diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-05-24 03:48:58 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-05-24 03:48:58 +0000 |
commit | eaa1df28bfdf5266ba2dd472ff29d6974cab1ca2 (patch) | |
tree | aadd8a16b177c7b6c3e4fb571224c7afdf418588 | |
parent | af73db069725cbaf0823735682f02f1bbd161107 (diff) | |
download | postgresql-eaa1df28bfdf5266ba2dd472ff29d6974cab1ca2.tar.gz postgresql-eaa1df28bfdf5266ba2dd472ff29d6974cab1ca2.zip |
From: Tom Lane <tgl@sss.pgh.pa.us>
... which causes it to build and install the shared version of
libpgtcl under the wrong name, on HPUX only. Patch against
today's sources follows.
-rw-r--r-- | src/interfaces/libpgtcl/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpgtcl/Makefile.in b/src/interfaces/libpgtcl/Makefile.in index d178d74b452..969111eab87 100644 --- a/src/interfaces/libpgtcl/Makefile.in +++ b/src/interfaces/libpgtcl/Makefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.14 1998/05/12 21:44:01 momjian Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile.in,v 1.15 1998/05/24 03:48:58 scrappy Exp $ # #------------------------------------------------------------------------- @@ -75,7 +75,7 @@ endif ifeq ($(PORTNAME), hpux) install-shlib-dep := install-shlib - shlib := libpq.sl + shlib := libpgtcl.sl LDFLAGS_SL = -b CFLAGS += $(CFLAGS_SL) endif |