diff options
Diffstat (limited to 'pr/tests/Makefile.in')
-rw-r--r-- | pr/tests/Makefile.in | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/pr/tests/Makefile.in b/pr/tests/Makefile.in index ecead6d8..99dcd64a 100644 --- a/pr/tests/Makefile.in +++ b/pr/tests/Makefile.in @@ -254,13 +254,18 @@ ifeq ($(OS_ARCH), IRIX) ifeq ($(USE_CPLUS), 1) CC = CC endif - LDOPTS += -rpath $(ABSOLUTE_LIB_DIR) -rdata_shared + LDOPTS += -rpath $(ABSOLUTE_LIB_DIR) + ifndef NS_USE_GCC + LDOPTS += -rdata_shared + endif # For 6.x machines, include this flag ifeq ($(basename $(OS_RELEASE)),6) - ifeq ($(USE_N32),1) - LDOPTS += -n32 - else - LDOPTS += -32 + ifndef NS_USE_GCC + ifeq ($(USE_N32),1) + LDOPTS += -n32 + else + LDOPTS += -32 + endif endif ifeq ($(USE_PTHREADS), 1) |