summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf Corsépius <corsepiu@fedoraproject.org>2007-11-22 09:43:40 +0100
committerRalf Corsépius <corsepiu@fedoraproject.org>2007-11-22 09:43:40 +0100
commit5787b3f7c12fd7d3a67663a8b1c85789a968ccf3 (patch)
tree133a79dacb808b148dcb2ca0ccc3630b1dcab696
parentd58b2666e3f80aac47130e4157ab0be16dc847dc (diff)
downloadrpm-5787b3f7c12fd7d3a67663a8b1c85789a968ccf3.tar.gz
rpm-5787b3f7c12fd7d3a67663a8b1c85789a968ccf3.tar.bz2
rpm-5787b3f7c12fd7d3a67663a8b1c85789a968ccf3.zip
Eliminate egrep (Abandoned by POSIX many years ago).
-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