From: Tom Tromey Date: Mon, 27 Nov 1995 19:09:34 +0000 (+0000) Subject: Abort if perl not found X-Git-Tag: Release-0-25~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e3ad4f7c9541234fa04aeed33dc2d6c2020b1ea;p=thirdparty%2Fautomake.git Abort if perl not found --- 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.