diff options
author | julien.pierre.bugs%sun.com <devnull@localhost> | 2005-04-13 20:58:06 +0000 |
---|---|---|
committer | julien.pierre.bugs%sun.com <devnull@localhost> | 2005-04-13 20:58:06 +0000 |
commit | 93e5e4803f863ec61421e09cc0cad65534377ef8 (patch) | |
tree | a050c64375495bc5c2fdac198c418cb0981f675c | |
parent | 7283639377e446712c2802998d6b1b1613b177e7 (diff) | |
download | nss-hg-93e5e4803f863ec61421e09cc0cad65534377ef8.tar.gz |
Fix for bug 290120 - compile source files with absolute pathnames on AIX. r=wtchang
-rw-r--r-- | security/coreconf/rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/coreconf/rules.mk b/security/coreconf/rules.mk index d31e455f2..7643672b2 100644 --- a/security/coreconf/rules.mk +++ b/security/coreconf/rules.mk @@ -395,7 +395,7 @@ WCCFLAGS3 := $(subst -D,-d,$(WCCFLAGS2)) # Translate source filenames to absolute paths. This is required for # debuggers under Windows & OS/2 to find source files automatically -ifeq (,$(filter-out OS2%,$(OS_TARGET))) +ifeq (,$(filter-out OS2 AIX,$(OS_TARGET))) NEED_ABSOLUTE_PATH := 1 PWD := $(shell pwd) endif |