aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Lepied <flepied@mandriva.com>2002-02-20 15:20:16 +0000
committerFrederic Lepied <flepied@mandriva.com>2002-02-20 15:20:16 +0000
commitbb44d0b80cc3e3fdc45518bac15e82ec126997b7 (patch)
treeb464b39e8e905a1aa2498cfd28fad35f36812b87
parent1d41bb467e16cd4e9321baad765a478485357fb5 (diff)
downloadspec-helper-bb44d0b80cc3e3fdc45518bac15e82ec126997b7.tar
spec-helper-bb44d0b80cc3e3fdc45518bac15e82ec126997b7.tar.gz
spec-helper-bb44d0b80cc3e3fdc45518bac15e82ec126997b7.tar.bz2
spec-helper-bb44d0b80cc3e3fdc45518bac15e82ec126997b7.tar.xz
spec-helper-bb44d0b80cc3e3fdc45518bac15e82ec126997b7.zip
oops grep => egrep
-rwxr-xr-xspec-helper2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec-helper b/spec-helper
index a2b4974..35e95e8 100755
--- a/spec-helper
+++ b/spec-helper
@@ -57,7 +57,7 @@ test -z "$DONT_SYMLINK_LIBS" && echo -n "Building libraries symlinks..." && lib_
if test -z "$DONT_GPRINTIFY"; then
scripts=
for f in `ls $RPM_BUILD_ROOT/etc/rc.d/init.d/* $RPM_BUILD_ROOT/etc/init.d/* 2> /dev/null`; do
- test -f $f && grep -q '[[:space:]]*\.[[:space:]]+.*/functions' $f && scripts="$scripts $f"
+ test -f $f && egrep -q '[[:space:]]*\.[[:space:]]+.*/functions' $f && scripts="$scripts $f"
done
if [ -n "$scripts" ]; then
echo -n "Gprintifying init scripts..." && gprintify.py $scripts && echo "done"