summaryrefslogtreecommitdiff
path: root/lib/msgc/src
diff options
context:
space:
mode:
authorwtc <devnull@localhost>1998-04-30 19:36:53 +0000
committerwtc <devnull@localhost>1998-04-30 19:36:53 +0000
commit8cd65b9f79376863fdfee8144800a77f6cc53d85 (patch)
treef1311f9a23566e24b343e16a7cf7d141fe85c9bc /lib/msgc/src
parent1e332bf7c01e73848e01b7dc81a40efb2553afba (diff)
downloadnspr-hg-8cd65b9f79376863fdfee8144800a77f6cc53d85.tar.gz
Various makefile cleanups. On SCO OpenServer, the value of OS_ARCH
is now 'SCOOS' instead of 'SCO_SV'. Also, we just use the cpp macro 'SCO' and deleted the macro 'SCO_SV'. In pr/src/md/unix/Makefile, we do not assemble the ultrasparc assembly file if we are compiling with gcc.
Diffstat (limited to 'lib/msgc/src')
-rw-r--r--lib/msgc/src/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msgc/src/Makefile b/lib/msgc/src/Makefile
index 39f3369a..91e25c31 100644
--- a/lib/msgc/src/Makefile
+++ b/lib/msgc/src/Makefile
@@ -73,14 +73,14 @@ EXTRA_LIBS = -L$(DIST)/lib -lnspr$(NSPR_VERSION)
endif
endif
-# On NCR and SCO_SV, we can't link with extra libraries when
+# On NCR and SCOOS, we can't link with extra libraries when
# we build a shared library. If we do so, the linker doesn't
# complain, but we would run into weird problems at run-time.
# Therefore on these platforms, we link just the .o files.
ifeq ($(OS_ARCH),NCR)
EXTRA_LIBS =
endif
-ifeq ($(OS_ARCH),SCO_SV)
+ifeq ($(OS_ARCH),SCOOS)
EXTRA_LIBS =
endif