diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2012-03-21 18:27:26 +0100 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2012-03-21 18:27:26 +0100 |
commit | e065cfc6746161f8ee43c9f32abc728987696043 (patch) | |
tree | cd161f3de2858ed52f01b259f611bb23cbaf08b6 /configure.in | |
parent | 5c3dd5af41bc801ee6023513399c01c632dc7779 (diff) |
checking for egrep doesn't necessarily set GREP as well
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 0c5093e8f007..66dcf18e57ce 100644 --- a/configure.in +++ b/configure.in @@ -62,6 +62,8 @@ fi AC_SUBST(CROSS_COMPILING) AC_PROG_EGREP +# AC_PROG_EGREP doesn't set GREP on all systems as well +AC_PATH_PROG(GREP, grep) if test "$build_os" = "cygwin"; then EXEEXT_FOR_BUILD=.exe |