summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-07-17 13:47:51 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-07-17 13:47:51 -0700
commit6a9f2f38895d2c93b531772d34f7b031417c73f7 (patch)
tree35d7095d4226874dd1d5a90ea6b190c2ba833aca
parentfa6a60e177786fea2b834691a66319fd3b177038 (diff)
downloadsyslinux-6a9f2f38895d2c93b531772d34f7b031417c73f7.tar.gz
win32: run shell script in the current dir with ./
Need leading ./ to run shell script in the current directory. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--win32/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/Makefile b/win32/Makefile
index 9ea96435..7ec55f20 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -28,7 +28,7 @@ else
ifeq ($(findstring MINGW32,$(OSTYPE)),MINGW32)
WINPREFIX :=
else
-WINPREFIX := $(shell find-mingw.sh gcc)
+WINPREFIX := $(shell ./find-mingw.sh gcc)
endif
WINCFLAGS := -W -Wall -Wno-sign-compare -Os -fomit-frame-pointer \
-D_FILE_OFFSET_BITS=64