summaryrefslogtreecommitdiff
path: root/security/coreconf
diff options
context:
space:
mode:
authorrelyea%netscape.com <devnull@localhost>2001-04-30 22:40:57 +0000
committerrelyea%netscape.com <devnull@localhost>2001-04-30 22:40:57 +0000
commit9b5c8a568dea76ed401a91b279707a8fc977c8ed (patch)
tree2aba42c010b73fc99e5b967406c72145fa263a46 /security/coreconf
parent6982b64df374cb5631ffe593c00f459c994264e4 (diff)
downloadnss-hg-9b5c8a568dea76ed401a91b279707a8fc977c8ed.tar.gz
Don't translate .obj directory separators on Unix.
Diffstat (limited to 'security/coreconf')
-rw-r--r--security/coreconf/rules.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/security/coreconf/rules.mk b/security/coreconf/rules.mk
index 6d20aef26..e72740ed0 100644
--- a/security/coreconf/rules.mk
+++ b/security/coreconf/rules.mk
@@ -284,7 +284,11 @@ get_objs:
$(LIBRARY): $(BUILT_SRCS) $(OBJS)
@$(MAKE_OBJDIR)
rm -f $@
+ifeq ($(OS_ARCH), WINNT)
$(AR) $(subst /,\\,$(OBJS))
+else
+ $(AR) $(OBJS)
+endif
$(RANLIB) $@
echo $(BUILT_SRCS) $(OBJS)