diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-06-28 18:56:18 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-06-28 18:56:18 +0000 |
commit | f953a46b34969efadac3c20e19cbeac93153e833 (patch) | |
tree | 3155dc932d396412484bee9a39ef5e2a98bef179 | |
parent | 542a3d83bb3d55ffc26890d2d701e645302231ea (diff) |
run the zip command in the cygwin sh to make sure its in its native env
svn path=/trunk/; revision=15118
-rwxr-xr-x | packages/win32_inno/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index fe713c18..90aeca09 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -51,7 +51,8 @@ zip: //TASKS="" install -p $(DESTDIR)$(prefix)/*.dll "$(zippackagefolder)/bin/" cd "$(zipfolder)" && \ - zip -9r $(zippackage).zip $(zippackage) + /c/cygwin/bin/sh -c \ + "zip -9r --no-wild $(zippackage).zip $(zippackage)" @echo " " @echo "win32_inno install succeeded!" |