summaryrefslogtreecommitdiffstats
path: root/source/ap/linuxdoc-tools/linuxdoc-tools.build
diff options
context:
space:
mode:
Diffstat (limited to 'source/ap/linuxdoc-tools/linuxdoc-tools.build')
-rwxr-xr-xsource/ap/linuxdoc-tools/linuxdoc-tools.build16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/ap/linuxdoc-tools/linuxdoc-tools.build b/source/ap/linuxdoc-tools/linuxdoc-tools.build
index 1f73284e8..e95d9b69c 100755
--- a/source/ap/linuxdoc-tools/linuxdoc-tools.build
+++ b/source/ap/linuxdoc-tools/linuxdoc-tools.build
@@ -91,7 +91,7 @@ find . \
# Apply patches:
# Assemble patch list from spec file:
-# egrep '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
+# grep -E '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
#for i in \
# \
# \
@@ -528,7 +528,7 @@ find . \
-exec chmod 644 {} \;
# Extract patch set from Spec file:
-# egrep '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
+# grep -E '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
#
# Apply patches:
for i in \
@@ -772,7 +772,7 @@ find . \
-exec chmod 644 {} \;
# Assemble patch list from spec file (and see individual level-2 patch outside of 'for' loop below):
-# egrep '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
+# grep -E '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
# Apply patches:
# Note: 'docbook-style-xsl-non-recursive-string-subst.patch' is applied separately
# as it needs a different patch level.
@@ -1048,7 +1048,7 @@ find . \
# Apply patches:
# Extract patch set from Spec file:
-# egrep '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
+# grep -E '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
#
# Note: exclude patch 'gnome-doc-utils-0.14.0-package.patch' as it's an RH bug from 2008
# and we've never included it.
@@ -1108,7 +1108,7 @@ find . \
# Apply patches:
# Extract patch set from Spec file:
-# egrep '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
+# grep -E '^Patch[0-9].*: ' *.spec | awk -F: '{print $2" \\"}'
# Note: exclude patch 'gnome-doc-utils-0.14.0-package.patch' as it's an RH bug from 2008
# and we've never included it.
for i in \
@@ -1161,7 +1161,7 @@ cd $TMP
cd XML-NamespaceSupport*/ || exit 1
perl Makefile.PL INSTALLDIRS=vendor
# Make sure the man pages go where we want them:
- grep -F -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
+ grep -Flr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
make || exit 1
make test || exit 1
make pure_install || exit 1 || exit 1 ) || exit 1
@@ -1171,7 +1171,7 @@ cd $TMP
tar xvf XML-SAX-Base-*z
cd XML-SAX-Base-*/ || exit 1
perl Makefile.PL INSTALLDIRS=vendor
- grep -F -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
+ grep -Flr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
make || exit 1
make test || exit 1
make pure_install || exit 1 ) || exit 1
@@ -1183,7 +1183,7 @@ cd $TMP
patch -p1 < ../perl-XML-SAX-0.99-rt20126.patch || exit 1
# Answer Y to updating ParserDetails.ini:
yes | perl Makefile.PL INSTALLDIRS=vendor
- grep -F -lr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
+ grep -Flr -- '/share/man/' . | xargs sed -i 's?/share/man/?/man/?g'
make || exit 1
make test || exit 1
make pure_install || exit 1