summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-06-14 02:23:42 +0000
committerwtc%netscape.com <devnull@localhost>2001-06-14 02:23:42 +0000
commit18d57431ca147c1a9c46900ecd6edcec33bab839 (patch)
tree9f30ecb2aea5ffa4a60f9c350deb87e73b2aa1fc
parent5429f36e7da3facc36cee7e250103e85bda4ce30 (diff)
downloadnspr-hg-18d57431ca147c1a9c46900ecd6edcec33bab839.tar.gz
Put all IRIX cc compiler options inside the ifndef NS_USE_GCC block.
Modified files: config/Makefile.in pr/tests/Makefile.in
-rw-r--r--config/Makefile.in22
-rw-r--r--pr/tests/Makefile.in8
2 files changed, 15 insertions, 15 deletions
diff --git a/config/Makefile.in b/config/Makefile.in
index 7d2e5f76..0360255b 100644
--- a/config/Makefile.in
+++ b/config/Makefile.in
@@ -74,17 +74,17 @@ endif
ifeq ($(OS_ARCH), IRIX)
ifeq ($(basename $(OS_RELEASE)),6)
- ifeq ($(USE_N32),1)
- ifndef NS_USE_GCC
- XLDOPTS += -n32 -Wl,-woff,85
- endif
- else
- ifeq ($(USE_64),1)
- XLDOPTS += -64
- else
- XLDOPTS += -32
- endif
- endif
+ ifndef NS_USE_GCC
+ ifeq ($(USE_N32),1)
+ XLDOPTS += -n32 -Wl,-woff,85
+ else
+ ifeq ($(USE_64),1)
+ XLDOPTS += -64
+ else
+ XLDOPTS += -32
+ endif
+ endif
+ endif
endif
endif
diff --git a/pr/tests/Makefile.in b/pr/tests/Makefile.in
index 99dcd64a..8a190b9a 100644
--- a/pr/tests/Makefile.in
+++ b/pr/tests/Makefile.in
@@ -266,11 +266,11 @@ ifeq ($(OS_ARCH), IRIX)
else
LDOPTS += -32
endif
- endif
- ifeq ($(USE_PTHREADS), 1)
- ifeq ($(OS_RELEASE), 6.2)
- LDOPTS += -Wl,-woff,85
+ ifeq ($(USE_PTHREADS), 1)
+ ifeq ($(OS_RELEASE), 6.2)
+ LDOPTS += -Wl,-woff,85
+ endif
endif
endif
endif