From 257c7fd23b72d83c53407279ed9e96b6fbf5d6cb Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Mon, 27 Nov 2006 20:11:45 +0000 Subject: [PATCH] Put quotes around option with # in manifest mt.exe command. --- configure/os/CONFIG.win32-x86.win32-x86 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure/os/CONFIG.win32-x86.win32-x86 b/configure/os/CONFIG.win32-x86.win32-x86 index 9923dfa78..c670dd1a3 100644 --- a/configure/os/CONFIG.win32-x86.win32-x86 +++ b/configure/os/CONFIG.win32-x86.win32-x86 @@ -299,9 +299,9 @@ LINK.cpp = $(WINLINK) -nologo $(STATIC_LDFLAGS) $(LDFLAGS) $(PROD_LDFLAGS) -out: # useManifestTool.pl returns 0(don't use) or 1(use). # ifeq ($(shell $(PERL) $(TOOLS)/useManifestTool.pl),1) -MT_DLL_COMMAND = mt.exe /manifest $@.manifest /outputresource:$@;\#2 +MT_DLL_COMMAND = mt.exe /manifest $@.manifest "/outputresource:$@;\#2" MT_EXE_COMMAND_YES = -MT_EXE_COMMAND_NO = mt.exe /manifest $@.manifest /outputresource:$@;\#1 +MT_EXE_COMMAND_NO = mt.exe /manifest $@.manifest "/outputresource:$@;\#1" MT_EXE_COMMAND = $(MT_EXE_COMMAND_$(STATIC_BUILD)) endif