From 887eefec342c052f108973176b414b761e06d0af Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Tue, 17 Jan 2012 00:37:59 +0100 Subject: configure: also detect plain grep We need just 'grep', and we need to be able to call it with 'grep -E'. Check for 'grep', and bailout if egrep != grep -E Signed-off-by: "Yann E. MORIN" diff --git a/Makefile.in b/Makefile.in index 5663c83..b74a929 100644 --- a/Makefile.in +++ b/Makefile.in @@ -53,7 +53,7 @@ export mandir := @mandir@ export datarootdir := @datarootdir@ export install := @INSTALL@ export bash := @_BASH@ -export grep := @EGREP@ +export grep := @GREP@ export make := @MAKE@ export sed := @SED@ export libtool := @LIBTOOL@ diff --git a/configure.ac b/configure.ac index 51ce527..7f49c0d 100644 --- a/configure.ac +++ b/configure.ac @@ -91,7 +91,11 @@ AC_ARG_PROGRAM # just what I seem to experience...) #--------------------------------------------------------------------- AC_PROG_INSTALL +AC_PROG_GREP AC_PROG_EGREP +AS_IF( + [test ! "$EGREP" = "$GREP -E"], + [AC_MSG_ERROR([egrep is not $GREP -E])]) AC_CACHE_VAL([ac_cv_path_SED], [AC_ARG_WITH([sed], AS_HELP_STRING([--with-sed=PATH], -- cgit v0.10.2-6-g49f6