summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2010-10-26 13:49:21 -0400
committerDave Jones <davej@redhat.com>2010-10-26 13:49:21 -0400
commitb428b84658a878cb7b37a2eb8dfa2efa58ad9585 (patch)
tree2facb560149fd4e5706b127e6cf9c52fbab3acd3
parenta4246dab4426932bdb452ecfacf430fc74e860ff (diff)
downloadkernel-b428b84658a878cb7b37a2eb8dfa2efa58ad9585.tar.gz
kernel-b428b84658a878cb7b37a2eb8dfa2efa58ad9585.tar.xz
kernel-b428b84658a878cb7b37a2eb8dfa2efa58ad9585.zip
stop using the obsolete forms of grep shortcuts.
-rw-r--r--kernel.spec8
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel.spec b/kernel.spec
index a124ff5ac..4ebbfaeba 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -941,7 +941,7 @@ ApplyPatch()
exit 1
fi
%if !%{using_upstream_branch}
- if ! egrep "^Patch[0-9]+: $patch\$" %{_specdir}/${RPM_PACKAGE_NAME%%%%%{?variant}}.spec ; then
+ if ! grep -E "^Patch[0-9]+: $patch\$" %{_specdir}/${RPM_PACKAGE_NAME%%%%%{?variant}}.spec ; then
if [ "${patch:0:10}" != "patch-2.6." ] ; then
echo "ERROR: Patch $patch not listed as a source patch in specfile"
exit 1
@@ -1376,7 +1376,7 @@ for i in *.config
do
mv $i .config
Arch=`head -1 .config | cut -b 3-`
- make ARCH=$Arch listnewconfig | egrep '^CONFIG_' >.newoptions || true
+ make ARCH=$Arch listnewconfig | grep -E '^CONFIG_' >.newoptions || true
%if %{listnewconfig_fail}
if [ -s .newoptions ]; then
cat .newoptions
@@ -1573,7 +1573,7 @@ BuildKernel() {
# Generate a list of modules for block and networking.
- fgrep /drivers/ modnames | xargs --no-run-if-empty nm -upA |
+ grep -F /drivers/ modnames | xargs --no-run-if-empty nm -upA |
sed -n 's,^.*/\([^/]*\.ko\): *U \(.*\)$,\1 \2,p' > drivers.undef
collect_modules_list()
@@ -1599,7 +1599,7 @@ BuildKernel() {
/sbin/modinfo -l $i >> modinfo
done < modnames
- egrep -v \
+ grep -E -v \
'GPL( v2)?$|Dual BSD/GPL$|Dual MPL/GPL$|GPL and additional rights$' \
modinfo && exit 1