From cd39fdcae33377a568bb0853d90e38a0d4d9d000 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 20 Jan 2012 02:09:20 -0800 Subject: [PATCH] build: Surround makensis command in quotes Quick hack - on the bots this is installed in a dir containing spaces. --- mk/dist.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/dist.mk b/mk/dist.mk index 64ad91a9380..282de44d711 100644 --- a/mk/dist.mk +++ b/mk/dist.mk @@ -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