aboutsummaryrefslogtreecommitdiff
path: root/dev/make-installer-win32.sh
diff options
context:
space:
mode:
authorEnrico Tassi2014-09-19 17:27:58 +0200
committerEnrico Tassi2014-09-19 17:27:58 +0200
commitb704074e906cfd7aff1b4f02e17b7919b20e8a7d (patch)
tree4e666ebf65c1f638d9c64ddf0cbfa24a3426b61b /dev/make-installer-win32.sh
parent0d90ab680abd1f558f1c20b79b66ca6b71864fbf (diff)
win32: embed NSIS for plugin writers
Diffstat (limited to 'dev/make-installer-win32.sh')
-rwxr-xr-xdev/make-installer-win32.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/make-installer-win32.sh b/dev/make-installer-win32.sh
index fce119f779..0a39e8d76e 100755
--- a/dev/make-installer-win32.sh
+++ b/dev/make-installer-win32.sh
@@ -1,11 +1,11 @@
#!/bin/sh
-NSIS="/cygdrive/c/Program Files/NSIS/makensis"
+NSIS="$BASE/NSIS/makensis"
ZIP=_make.zip
URL1=http://sourceforge.net/projects/gnuwin32/files/make/3.81/make-3.81-bin.zip/download
URL2=http://sourceforge.net/projects/gnuwin32/files/make/3.81/make-3.81-dep.zip/download
-./configure -prefix ./ -with-doc no
+./configure -prefix ./ -with-doc no -no-native-compiler
make
if [ ! -e bin/make.exe ]; then
wget -O $ZIP $URL1 && 7z x $ZIP "bin/*"