summaryrefslogtreecommitdiff
path: root/coreconf/WIN32.mk
diff options
context:
space:
mode:
authorMike Hommey <mh+mozilla@glandium.org>2013-12-03 19:38:27 -0800
committerMike Hommey <mh+mozilla@glandium.org>2013-12-03 19:38:27 -0800
commit0588438a63d5deb6114d2ea268f8b07a773f4042 (patch)
treeb838c3df04f3a4c2954c41b295412eda89c806e5 /coreconf/WIN32.mk
parentbfc3b888b000dc79692db2ad436e00457a20b744 (diff)
downloadnss-hg-0588438a63d5deb6114d2ea268f8b07a773f4042.tar.gz
Bug 944240: Avoid quoting issues with GNU make 4.0 on windows, r=briansmithNSS_3_15_4_BETA6
Diffstat (limited to 'coreconf/WIN32.mk')
-rw-r--r--coreconf/WIN32.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreconf/WIN32.mk b/coreconf/WIN32.mk
index 0a5e22612..eeab70d79 100644
--- a/coreconf/WIN32.mk
+++ b/coreconf/WIN32.mk
@@ -25,7 +25,7 @@ else
CCC = cl
LINK = link
AR = lib
- AR += -NOLOGO -OUT:"$@"
+ AR += -NOLOGO -OUT:$@
RANLIB = echo
BSDECHO = echo
RC = rc.exe
@@ -130,7 +130,7 @@ else # !NS_USE_GCC
OPTIMIZER += -O2
endif
DEFINES += -UDEBUG -U_DEBUG -DNDEBUG
- DLLFLAGS += -OUT:"$@"
+ DLLFLAGS += -OUT:$@
ifdef MOZ_DEBUG_SYMBOLS
ifdef MOZ_DEBUG_FLAGS
OPTIMIZER += $(MOZ_DEBUG_FLAGS) -Fd$(OBJDIR)/
@@ -156,7 +156,7 @@ else # !NS_USE_GCC
USERNAME := $(subst $(SPACE),_,$(USERNAME))
USERNAME := $(subst -,_,$(USERNAME))
DEFINES += -DDEBUG -D_DEBUG -UNDEBUG -DDEBUG_$(USERNAME)
- DLLFLAGS += -DEBUG -OUT:"$@"
+ DLLFLAGS += -DEBUG -OUT:$@
LDFLAGS += -DEBUG
ifeq ($(_MSC_VER),$(_MSC_VER_6))
ifndef MOZ_DEBUG_SYMBOLS