aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2014-02-06 19:07:08 -0800
committerH. Peter Anvin <hpa@zytor.com>2014-02-06 19:07:08 -0800
commit9376eaf8582bcec4aebd697d33836f0d180aee13 (patch)
treea8fe1edcd6ed0b5ed0e1a954e426288cc01740df
parent8873a25050681150411bc5313b8b3ee52184ce0f (diff)
downloadsyslinux-9376eaf8582bcec4aebd697d33836f0d180aee13.tar.gz
check-gnu-efi: remove bashism
&>foo is a bashism, use >foo 2>&1 instead. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rwxr-xr-xefi/check-gnu-efi.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh
index dc3b6914..e16e20a1 100755
--- a/efi/check-gnu-efi.sh
+++ b/efi/check-gnu-efi.sh
@@ -25,7 +25,7 @@ if [ ! -f $objdir/include/efi/$ARCH/efibind.h ]; then
# Syslinux disables built-in implicit rules.
export MAKEFLAGS=
- ../../efi/build-gnu-efi.sh $ARCH $objdir &> /dev/null
+ ../../efi/build-gnu-efi.sh $ARCH $objdir > /dev/null 2>&1
if [ $? -ne 0 ]; then
printf "Failed to build gnu-efi. "
printf "Execute the following command for full details: \n\n"