diff options
| author | Bruce Momjian <bruce@momjian.us> | 2004-08-28 22:55:06 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2004-08-28 22:55:06 +0000 |
| commit | f7587aeba898b8b558741006564b86e9d298c0bc (patch) | |
| tree | 544fbb5e98c30d659167515eba235ed7b1eaeb81 /src/port/Makefile | |
| parent | 922599464f620bdc7e73ffc65f927e7845fadadf (diff) | |
| download | postgresql-f7587aeba898b8b558741006564b86e9d298c0bc.tar.gz | |
> Am Dienstag, 17. August 2004 14:26 schrieb Fabien COELHO:
> > The patch adds missing the "libpgport.a" file to the installation under
> > "install-all-headers". It is needed by some contribs. I install the
> > library in "pkglibdir", but I was wondering whether it should be "libdir"?
Please find attached a small patch against current CVS head that fixes
pgport library installation so that it goes to libdir instead of
pkglibdir. It works for me.
Fabien Coelho
Diffstat (limited to 'src/port/Makefile')
| -rw-r--r-- | src/port/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/port/Makefile b/src/port/Makefile index 886d177ed0..a5cc24c386 100644 --- a/src/port/Makefile +++ b/src/port/Makefile @@ -7,7 +7,7 @@ # with broken/missing library files. # IDENTIFICATION -# $PostgreSQL: pgsql/src/port/Makefile,v 1.17 2004/08/20 20:13:10 momjian Exp $ +# $PostgreSQL: pgsql/src/port/Makefile,v 1.18 2004/08/28 22:55:06 momjian Exp $ # #------------------------------------------------------------------------- @@ -22,10 +22,10 @@ all: libpgport.a # libpgport is needed by some contrib install-all-headers: - $(INSTALL_STLIB) libpgport.a $(DESTDIR)$(pkglibdir) + $(INSTALL_STLIB) libpgport.a $(DESTDIR)$(libdir) uninstall: - $(RM) $(DESTDIR)$(pkglibdir)/libpgport.a + $(RM) $(DESTDIR)$(libdir)/libpgport.a libpgport.a: $(LIBOBJS) $(AR) $(AROPT) $@ $^ |
