From 9e3ad4f7c9541234fa04aeed33dc2d6c2020b1ea Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 27 Nov 1995 19:09:34 +0000 Subject: [PATCH] Abort if perl not found --- configure.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index a3dcfb37e..7d9a4ddc4 100644 --- a/configure.in +++ b/configure.in @@ -14,9 +14,11 @@ ALL_LINGUAS= AC_ARG_PROGRAM fp_PROG_INSTALL -AC_PATH_PROG(PERL, perl, -echo "Perl not found; aborting" -exit 1) +AC_PATH_PROG(PERL, perl) +if test -z "$PERL"; then + echo "fatal error: perl not found" 1>&2 + exit 1 +fi dnl dnl NLS configuration. -- 2.11.4.GIT