summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-02-01 18:21:28 +0000
committerwtc%netscape.com <devnull@localhost>2001-02-01 18:21:28 +0000
commitc23f590fd2be0998942aa2d4afcbb443cd96f0df (patch)
tree8bc8b51847ca258083042deb71913a2672f43be8
parentba2427ecc7dbf9addb257f9c791675beb8623c91 (diff)
downloadnss-hg-c23f590fd2be0998942aa2d4afcbb443cd96f0df.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. (NSS_3_1_BRANCH)
-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 3e010bd2a..81245b88d 100644
--- a/security/coreconf/rules.mk
+++ b/security/coreconf/rules.mk
@@ -472,8 +472,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