Blame SOURCES/0018-Prefer-more-portable-test-1-constructs.patch

f731ee
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f731ee
From: Colin Watson <cjwatson@ubuntu.com>
f731ee
Date: Fri, 17 Jan 2014 15:24:50 +0000
f731ee
Subject: [PATCH] Prefer more portable test(1) constructs
f731ee
f731ee
* util/grub.d/00_header.in (make_timeout): Use && rather than test
f731ee
-a.
f731ee
* util/grub.d/10_windows.in: Likewise.
f731ee
* util/grub.d/10_netbsd.in (netbsd_load_fs_module): Use || rather
f731ee
than test -o.
f731ee
* util/grub.d/30_os-prober.in: Use && rather than test -a, and ||
f731ee
rather than test -o.
f731ee
---
f731ee
 ChangeLog                   | 12 +++++++++++-
f731ee
 util/grub.d/00_header.in    |  2 +-
f731ee
 util/grub.d/10_netbsd.in    |  2 +-
f731ee
 util/grub.d/10_windows.in   |  4 ++--
f731ee
 util/grub.d/30_os-prober.in |  4 ++--
f731ee
 5 files changed, 17 insertions(+), 7 deletions(-)
f731ee
f731ee
diff --git a/ChangeLog b/ChangeLog
f731ee
index 6613b4ee52b..c8e95a6b98d 100644
f731ee
--- a/ChangeLog
f731ee
+++ b/ChangeLog
f731ee
@@ -1,4 +1,14 @@
f731ee
-2014-01-17  Colin Watson  <cjwatson@debian.org>
f731ee
+2014-01-17  Colin Watson  <cjwatson@ubuntu.com>
f731ee
+
f731ee
+	* util/grub.d/00_header.in (make_timeout): Use && rather than test
f731ee
+	-a.
f731ee
+	* util/grub.d/10_windows.in: Likewise.
f731ee
+	* util/grub.d/10_netbsd.in (netbsd_load_fs_module): Use || rather
f731ee
+	than test -o.
f731ee
+	* util/grub.d/30_os-prober.in: Use && rather than test -a, and ||
f731ee
+	rather than test -o.
f731ee
+
f731ee
+2014-01-17  Colin Watson  <cjwatson@ubuntu.com>
f731ee
 
f731ee
 	* grub-core/osdep/freebsd/hostdisk.c (grub_util_fd_open): Remove
f731ee
 	redundant preprocessor conditional.
f731ee
diff --git a/util/grub.d/00_header.in b/util/grub.d/00_header.in
f731ee
index 0c82f231574..ce2ec819d8c 100644
f731ee
--- a/util/grub.d/00_header.in
f731ee
+++ b/util/grub.d/00_header.in
f731ee
@@ -285,7 +285,7 @@ make_timeout ()
f731ee
     if [ "x${3}" != "x" ] ; then
f731ee
 	timeout="${2}"
f731ee
 	style="${3}"
f731ee
-    elif [ "x${1}" != "x" -a "x${1}" != "x0" ] ; then
f731ee
+    elif [ "x${1}" != "x" ] && [ "x${1}" != "x0" ] ; then
f731ee
 	# Handle the deprecated GRUB_HIDDEN_TIMEOUT scheme.
f731ee
 	timeout="${1}"
f731ee
 	if [ "x${2}" != "x0" ] ; then
f731ee
diff --git a/util/grub.d/10_netbsd.in b/util/grub.d/10_netbsd.in
f731ee
index 29a0e41a9a5..9988a42bc50 100644
f731ee
--- a/util/grub.d/10_netbsd.in
f731ee
+++ b/util/grub.d/10_netbsd.in
f731ee
@@ -69,7 +69,7 @@ netbsd_load_fs_module ()
f731ee
   kversion=$(zcat -f "${kernel}" | strings | sed -n -e '/^@(#)NetBSD/ { s/^@(#)NetBSD \([0-9\.]*\) .*$/\1/g ; p ; q ; }')
f731ee
   kmodule="/stand/${karch}/${kversion}/modules/${kmod}/${kmod}.kmod"
f731ee
 
f731ee
-  if test -z "$karch" -o -z "$kversion" -o ! -f "${kmodule}"; then
f731ee
+  if test -z "$karch" || test -z "$kversion" || test ! -f "${kmodule}"; then
f731ee
     return
f731ee
   fi
f731ee
 
f731ee
diff --git a/util/grub.d/10_windows.in b/util/grub.d/10_windows.in
f731ee
index 9025914f6cf..48bd955464b 100644
f731ee
--- a/util/grub.d/10_windows.in
f731ee
+++ b/util/grub.d/10_windows.in
f731ee
@@ -66,11 +66,11 @@ for drv in $drives ; do
f731ee
   osid=
f731ee
 
f731ee
   # Check for Vista bootmgr.
f731ee
-  if [ -f "$dir"/bootmgr -a -f "$dir"/boot/bcd ] ; then
f731ee
+  if [ -f "$dir"/bootmgr ] && [ -f "$dir"/boot/bcd ] ; then
f731ee
     OS="$(gettext "Windows Vista/7 (loader)")"
f731ee
     osid=bootmgr
f731ee
   # Check for NTLDR.
f731ee
-  elif [ -f "$dir"/ntldr -a -f "$dir"/ntdetect.com -a -f "$dir"/boot.ini ] ; then
f731ee
+  elif [ -f "$dir"/ntldr ] && [ -f "$dir"/ntdetect.com ] && [ -f "$dir"/boot.ini ] ; then
f731ee
     OS=`get_os_name_from_boot_ini "$dir"/boot.ini` || OS="$(gettext "Windows NT/2000/XP (loader)")"
f731ee
     osid=ntldr
f731ee
     needmap=t
f731ee
diff --git a/util/grub.d/30_os-prober.in b/util/grub.d/30_os-prober.in
f731ee
index 0470e66853d..7cf8487d63a 100644
f731ee
--- a/util/grub.d/30_os-prober.in
f731ee
+++ b/util/grub.d/30_os-prober.in
f731ee
@@ -30,7 +30,7 @@ if [ "x${GRUB_DISABLE_OS_PROBER}" = "xtrue" ]; then
f731ee
   exit 0
f731ee
 fi
f731ee
 
f731ee
-if [ -z "`which os-prober 2> /dev/null`" -o -z "`which linux-boot-prober 2> /dev/null`" ] ; then
f731ee
+if [ -z "`which os-prober 2> /dev/null`" ] || [ -z "`which linux-boot-prober 2> /dev/null`" ] ; then
f731ee
   # missing os-prober and/or linux-boot-prober
f731ee
   exit 0
f731ee
 fi
f731ee
@@ -119,7 +119,7 @@ for OS in ${OSPROBED} ; do
f731ee
       EXPUUID="${EXPUUID}@${DEVICE#*@}"
f731ee
   fi
f731ee
 
f731ee
-  if [ "x${GRUB_OS_PROBER_SKIP_LIST}" != "x" -a "x`echo ${GRUB_OS_PROBER_SKIP_LIST} | grep -i -e '\b'${EXPUUID}'\b'`" != "x" ] ; then
f731ee
+  if [ "x${GRUB_OS_PROBER_SKIP_LIST}" != "x" ] && [ "x`echo ${GRUB_OS_PROBER_SKIP_LIST} | grep -i -e '\b'${EXPUUID}'\b'`" != "x" ] ; then
f731ee
     echo "Skipped ${LONGNAME} on ${DEVICE} by user request." >&2
f731ee
     continue
f731ee
   fi