aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-11-14 04:07:27 +0000
committerBruce Momjian <bruce@momjian.us>2002-11-14 04:07:27 +0000
commit0326dd76aa51df64bba658a26f166df7b8039acc (patch)
tree8c84a82e0d36a16c4be90016550eb0d3102c2cf3 /src
parentdb286699c6a2c9f095e620d7cfaa40719fa6237a (diff)
downloadpostgresql-0326dd76aa51df64bba658a26f166df7b8039acc.tar.gz
postgresql-0326dd76aa51df64bba658a26f166df7b8039acc.zip
There was an error in the gcc portion of the patch I sent you. Here is
the fix. Billy G. Allie
Diffstat (limited to 'src')
-rw-r--r--src/makefiles/Makefile.unixware2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefiles/Makefile.unixware b/src/makefiles/Makefile.unixware
index 76b52a5cd88..6b379822904 100644
--- a/src/makefiles/Makefile.unixware
+++ b/src/makefiles/Makefile.unixware
@@ -12,7 +12,7 @@ ifeq ($(with_gnu_ld), yes)
# the contents of LD_LIBRARY_PATH if it exists.
tpath1=$(shell echo $(trpath) | sed -e 's/ *-L/,-rpath,/g')
ifdef LD_LIBRARY_PATH
- tpath2 = ,-rpath,tpath+=$(shell echo $(LD_LIBRARY_PATH) | sed -e 's/:/,-rpath,/g')
+ tpath2 = ,-rpath,$(shell echo $(LD_LIBRARY_PATH) | sed -e 's/:/,-rpath,/g')
endif
rpath = -Wl,-rpath,$(libdir)$(tpath)$(tpath2)
else