diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-01-13 04:20:51 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-01-13 04:20:51 +0000 |
commit | 80159ee2bc11ef91c25f70365a6799c10674e508 (patch) | |
tree | 742fe57dfdcaf4b68d84a805f114fd40df2f1768 /src | |
parent | 405ced26ba225b6965ce650dee5df836670d452b (diff) | |
download | postgresql-80159ee2bc11ef91c25f70365a6799c10674e508.tar.gz postgresql-80159ee2bc11ef91c25f70365a6799c10674e508.zip |
One more src/interfaces/libpq/Makefile problem: there's an explicit
reference to the name of the shared library, instead of dereferencing
the definition from the top of the file.
From: Tom I Helbekkmo <tih@Hamartun.Priv.NO>
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/libpq/Makefile.in b/src/interfaces/libpq/Makefile.in index 9e55992b014..2cddba4eeb8 100644 --- a/src/interfaces/libpq/Makefile.in +++ b/src/interfaces/libpq/Makefile.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.1 1998/01/13 04:18:22 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.2 1998/01/13 04:20:51 scrappy Exp $ # #------------------------------------------------------------------------- @@ -153,7 +153,7 @@ 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 + ln -s $(shlib) $(DESTDIR)$(LIBDIR)/libpq.so depend dep: $(CC) -MM $(INCLUDE_OPT) *.c >depend |