1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-04-08 00:53:48 +02:00

Windows packaging: fix bug, probably introduced with new python version

A space was added to the end of each positional parameter value if used
with quotes (removed by shell).
This commit is contained in:
Oleg Semyonov 2013-04-28 00:23:25 +03:00
parent 80c88fecc6
commit 79c2d6f8e0

View File

@ -20,11 +20,11 @@ NSIS_HEADER := $(OPGCSSYNTHDIR)/openpilotgcs.nsh
package: package:
$(V1) mkdir -p "$(dir $(NSIS_HEADER))" $(V1) mkdir -p "$(dir $(NSIS_HEADER))"
$(VERSION_CMD) \ $(VERSION_CMD) \
--template="$(NSIS_TEMPLATE)" \ --template='$(NSIS_TEMPLATE)' \
--outfile="$(NSIS_HEADER)" \ --outfile='$(NSIS_HEADER)' \
PACKAGE_LBL="$(PACKAGE_LBL)" \ PACKAGE_LBL='$(PACKAGE_LBL)' \
PACKAGE_NAME="$(PACKAGE_NAME)" \ PACKAGE_NAME='$(PACKAGE_NAME)' \
PACKAGE_SEP="$(PACKAGE_SEP)" PACKAGE_SEP='$(PACKAGE_SEP)'
$(V1) echo "Building Windows installer, please wait..." $(V1) echo "Building Windows installer, please wait..."
$(V1) echo "If you have a script error in line 1 - use Unicode NSIS 2.46+" $(V1) echo "If you have a script error in line 1 - use Unicode NSIS 2.46+"
$(V1) echo " http://www.scratchpaper.com" $(V1) echo " http://www.scratchpaper.com"