summaryrefslogtreecommitdiff
path: root/helpers/lh_binary_syslinux
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-06-19 19:49:16 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:03:35 +0100
commit988db3ba49f0ee7ee6113acf97e83a1ab118cf06 (patch)
treefb86411115e38205401fcff954394595c4912ae0 /helpers/lh_binary_syslinux
parent5f3168deb73fd1e92bec83eb839b5d7381b6b023 (diff)
downloadlive-build-988db3ba49f0ee7ee6113acf97e83a1ab118cf06.zip
live-build-988db3ba49f0ee7ee6113acf97e83a1ab118cf06.tar.gz
Consolidate grep text searching predicates to use "grep -qs"
If this is deemed not portable enough in the future, it should be easy enough to find/replace.
Diffstat (limited to 'helpers/lh_binary_syslinux')
-rwxr-xr-xhelpers/lh_binary_syslinux2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_binary_syslinux b/helpers/lh_binary_syslinux
index 57304e3..f0338ae 100755
--- a/helpers/lh_binary_syslinux
+++ b/helpers/lh_binary_syslinux
@@ -280,7 +280,7 @@ Configure_syslinux_templates ()
# Syslinux v3.31 in etch does not support include statements
if [ "${LH_DISTRIBUTION}" = "etch" ]
then
- while grep -q ^include ${SCREEN_PATH}/syslinux.cfg
+ while grep -qs ^include ${SCREEN_PATH}/syslinux.cfg
do
INCLUDES=$(grep ^include ${SCREEN_PATH}/syslinux.cfg |awk '{print $2}')