diff options
author | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-11-22 09:43:40 +0100 |
---|---|---|
committer | Ralf Corsépius <corsepiu@fedoraproject.org> | 2007-11-22 09:43:40 +0100 |
commit | 5787b3f7c12fd7d3a67663a8b1c85789a968ccf3 (patch) | |
tree | 133a79dacb808b148dcb2ca0ccc3630b1dcab696 | |
parent | d58b2666e3f80aac47130e4157ab0be16dc847dc (diff) | |
download | rpm-5787b3f7c12fd7d3a67663a8b1c85789a968ccf3.tar.gz rpm-5787b3f7c12fd7d3a67663a8b1c85789a968ccf3.tar.bz2 rpm-5787b3f7c12fd7d3a67663a8b1c85789a968ccf3.zip |
Eliminate egrep (Abandoned by POSIX many years ago).
-rw-r--r-- | configure.ac | 4 |
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 |