diff options
author | Marc G. Fournier | 1997-03-17 22:05:08 +0000 |
---|---|---|
committer | Marc G. Fournier | 1997-03-17 22:05:08 +0000 |
commit | 7d02575ad1a608533637c7ec07cf5f7db81122e9 (patch) | |
tree | c122809b384848773e59587d2534040a2140a16d | |
parent | c9ba25eb6d1af825904970da4b9c9506a4ac987f (diff) |
Fixes for libpgtcl from Massimo
-rw-r--r-- | src/interfaces/libpgtcl/Makefile | 4 | ||||
-rw-r--r-- | src/interfaces/libpq/Makefile | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/interfaces/libpgtcl/Makefile b/src/interfaces/libpgtcl/Makefile index f6189a6291d..10d8099b3b7 100644 --- a/src/interfaces/libpgtcl/Makefile +++ b/src/interfaces/libpgtcl/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.9 1997/01/23 16:04:25 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/Makefile,v 1.10 1997/03/17 22:05:08 scrappy Exp $ # #------------------------------------------------------------------------- @@ -80,7 +80,7 @@ install-libpgtcl: libpgtcl.a install-shlib: libpgtcl.so.1 $(INSTALL) $(INSTL_LIB_OPTS) libpgtcl.so.1 \ - $(DESTDIR)$(LIBDIR)/libpgtcl.so + $(DESTDIR)$(LIBDIR)/libpgtcl.so.1 rm -f $(DESTDIR)$(LIBDIR)/libpgtcl.so ln -s libpgtcl.so.1 $(DESTDIR)$(LIBDIR)/libpgtcl.so diff --git a/src/interfaces/libpq/Makefile b/src/interfaces/libpq/Makefile index f629bbb1f45..31885c27bd5 100644 --- a/src/interfaces/libpq/Makefile +++ b/src/interfaces/libpq/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.30 1997/03/16 18:51:13 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Makefile,v 1.31 1997/03/17 22:05:05 scrappy Exp $ # #------------------------------------------------------------------------- @@ -139,6 +139,8 @@ install-libpq: libpq.a install-shlib: $(shlib) $(INSTALL) $(INSTL_LIB_OPTS) $(shlib) $(DESTDIR)$(LIBDIR)/$(shlib) + rm -f $(DESTDIR)$(LIBDIR)/libpq.so + ln -s libpq.so.1 $(DESTDIR)$(LIBDIR)/libpq.so depend dep: $(CC) -MM $(INCLUDE_OPT) *.c >depend |