summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index fce9545c5..313f322e9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -853,9 +853,9 @@ AC_CHECK_FUNC(lchown,
AC_ARG_ENABLE([broken-chown],
[ --enable-broken-chown this system's chown follows symbolic links],
result=$enableval, result=unknown)
- if echo "$build" | egrep "(aix)|(hpux)|(linux)" > /dev/null ; then
+ if echo "$build" | ${EGREP} "(aix)|(hpux)|(linux)" > /dev/null ; then
result=yes
- elif echo "$build" | egrep "(nextstep)" > /dev/null ; then
+ elif echo "$build" | ${EGREP} "(nextstep)" > /dev/null ; then
result=no
fi
if test $result = unknown; then