diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-09-14 13:33:08 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-09-14 13:33:08 +0000 |
commit | efebe2605e3271cda9390a2110b4e85fda9e3dc1 (patch) | |
tree | 7c96a35dce61864810b6a271c96a997800a3da32 /src | |
parent | 0e9b05bde921b87130a83138c2e089902f2fe843 (diff) | |
download | postgresql-efebe2605e3271cda9390a2110b4e85fda9e3dc1.tar.gz postgresql-efebe2605e3271cda9390a2110b4e85fda9e3dc1.zip |
Since I haven't gotten a reply, can someone REVERT the lines in
src/Makefile.shlib that adds $(libdir)/$(soname) for
port,eq,unixware to $(soname)?
Larry Rosenman
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.shlib | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib index e62113399f2..093bd91e861 100644 --- a/src/Makefile.shlib +++ b/src/Makefile.shlib @@ -6,7 +6,7 @@ # Copyright (c) 1998, Regents of the University of California # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.68 2003/09/10 03:56:33 momjian Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.69 2003/09/14 13:33:08 momjian Exp $ # #------------------------------------------------------------------------- @@ -191,7 +191,7 @@ ifeq ($(PORTNAME), unixware) else LINK.shared = $(CC) -G endif - LINK.shared += -Wl,-z,text -Wl,-h,$(libdir)/$(soname) + LINK.shared += -Wl,-z,text -Wl,-h,$(soname) endif ifeq ($(PORTNAME), cygwin) |