summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier1996-07-22 04:51:05 +0000
committerMarc G. Fournier1996-07-22 04:51:05 +0000
commit435d32cd25557d091873c302e7be534b43a495f7 (patch)
tree87bdc464c0585234f52290bee550e09ebaeccd9b
parentdf43edcf450ff70f610e8fcb54573f5d1ca7bd04 (diff)
quick fix to src/bin/Makefile.global so that compiling doesn't look for a
libpq that is already installed... submitted by: Bruce Momjian ([email protected])
-rw-r--r--src/bin/Makefile.global6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/bin/Makefile.global b/src/bin/Makefile.global
index df1c8e71177..375b5c6cb7f 100644
--- a/src/bin/Makefile.global
+++ b/src/bin/Makefile.global
@@ -7,18 +7,16 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.3 1996/07/19 06:47:51 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.4 1996/07/22 04:51:05 scrappy Exp $
#
#-------------------------------------------------------------------------
CFLAGS+= -I$(srcdir)/backend -I$(srcdir)/backend/include -I$(srcdir)/libpq
#
-# try locating libpq.a in the following places
-# Almost all (all?) the C programs in this directory
# link with libpq, so we put it here.
#
-LIBPQ:= -L$(srcdir)/libpq/$(objdir) -L$(LIBDIR) -lpq
+LIBPQ:= -L$(srcdir)/libpq/$(objdir) -lpq
LD_ADD+= $(LIBPQ)
DPADD+= $(LIBPQ)