From: Stefano Lattarini Date: Tue, 11 Sep 2012 21:35:31 +0000 (+0200) Subject: build: fixup: correctly recognize if perl is missing X-Git-Tag: v8.20~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d4924f10792cd443efafe8405f70a75d66cd9d5;p=thirdparty%2Fcoreutils.git build: fixup: correctly recognize if perl is missing * configure.ac: Here, by adding a missing '*' to the wildcard in a 'case' construct over the contents of $PERL. Introduced in commit v8.19-41-g00f5ba1. --- diff --git a/configure.ac b/configure.ac index 713a9b986c..e5e05be5c1 100644 --- a/configure.ac +++ b/configure.ac @@ -64,7 +64,7 @@ coreutils_MACROS # FIXME: this is suboptimal. Ideally, we would be able to call gl_PERL # with an ACTION-IF-NOT-FOUND argument ... cu_have_perl=yes -case $PERL in *"/missing ") cu_have_perl=no;; esac +case $PERL in *"/missing "*) cu_have_perl=no;; esac AM_CONDITIONAL([HAVE_PERL], [test $cu_have_perl = yes]) AC_ARG_ENABLE([gcc-warnings],