build: Surround makensis command in quotes

Quick hack - on the bots this is installed in a dir containing spaces.
This commit is contained in:
Brian Anderson 2012-01-20 02:09:20 -08:00
parent 341540b694
commit cd39fdcae3

View File

@ -43,7 +43,7 @@ lic.txt: $(S)LICENSE.txt
ifdef CFG_MAKENSIS
$(PKG_EXE): all rustc-stage3 $(PKG_NSI) $(PKG_FILES) lic.txt
@$(call E, makensis: $@)
$(Q)$(CFG_MAKENSIS) -NOCD -V1 "-XOutFile $@" \
$(Q)"$(CFG_MAKENSIS)" -NOCD -V1 "-XOutFile $@" \
"-XLicenseData lic.txt" $<
$(Q)rm -f lic.txt
endif