From 8d4924f10792cd443efafe8405f70a75d66cd9d5 Mon Sep 17 00:00:00 2001 From: Stefano Lattarini Date: Tue, 11 Sep 2012 23:35:31 +0200 Subject: [PATCH] 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 713a9b9..e5e05be 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], -- 2.7.4