summaryrefslogtreecommitdiff
path: root/security/coreconf/rules.mk
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-02-01 18:19:47 +0000
committerwtc%netscape.com <devnull@localhost>2001-02-01 18:19:47 +0000
commit1bab5610a8cae964fdec85dedacb2042e7b8d0d6 (patch)
tree7c8207dff82d3aa5a777ac01950f9c637969403c /security/coreconf/rules.mk
parent5e7159d7a59c5a3b6e8873550caede803e06f8d9 (diff)
downloadnss-hg-1bab5610a8cae964fdec85dedacb2042e7b8d0d6.tar.gz
Bugzilla bug #62855: make the rule to build .cpp files work for OS/2
VACPP. Thanks to Javier Pedemonte <pedemont@us.ibm.com> for the patch.
Diffstat (limited to 'security/coreconf/rules.mk')
-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 595c3594f..969911233 100644
--- a/security/coreconf/rules.mk
+++ b/security/coreconf/rules.mk
@@ -478,8 +478,12 @@ else
ifeq ($(OS_ARCH),WINNT)
$(CCC) -Fo$@ -c $(CFLAGS) $*.cpp
else
+ifdef XP_OS2_VACPP
+ $(CCC) -Fo$@ -c $(CFLAGS) $*.cpp
+else
$(CCC) -o $@ -c $(CFLAGS) $*.cpp
endif
+endif
endif #STRICT_CPLUSPLUS_SUFFIX
%.i: %.cpp