aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2013-12-11 09:04:07 +0000
committerMatt Fleming <matt.fleming@intel.com>2013-12-11 09:17:34 +0000
commit237875e126c700ae538e94e5d4a7e79ee955fe5d (patch)
treeedce8b4108dd95e0d0f957ddc01f2d20122edf0d
parent278da3be43f13f9956267c2394fe9c0e158fe6cd (diff)
downloadsyslinux-237875e126c700ae538e94e5d4a7e79ee955fe5d.tar.gz
syslinux-237875e126c700ae538e94e5d4a7e79ee955fe5d.tar.xz
syslinux-237875e126c700ae538e94e5d4a7e79ee955fe5d.zip
efi: Don't rebuild gnu-efi every time
There is a typo in the path used to decide whether to build gnu-efi. Since the condition "does a nonexistent file exist?" will never evaluate true, we're currently building gnu-efi unnecessarily. Signed-off-by: Matt Fleming <matt.fleming@intel.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 3fd193de..fcf5fd49 100755
--- a/efi/check-gnu-efi.sh
+++ b/efi/check-gnu-efi.sh
@@ -22,7 +22,7 @@ ARCH=$1
srcdir=`realpath $2`
objdir=`realpath $3`
-if [ ! -f $objdir/include/$ARCH/efibind.h ]; then
+if [ ! -f $objdir/include/efi/$ARCH/efibind.h ]; then
# Build the external project with a clean make environment, as
# Syslinux disables built-in implicit rules.
export MAKEFLAGS=