Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 435d32c

Browse files
committed
quick fix to src/bin/Makefile.global so that compiling doesn't look for a
libpq that is already installed... submitted by: Bruce Momjian (root@candle.pha.pa.us)
1 parent df43edc commit 435d32c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/bin/Makefile.global

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,16 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.3 1996/07/19 06:47:51 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/bin/Attic/Makefile.global,v 1.4 1996/07/22 04:51:05 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

1414
CFLAGS+= -I$(srcdir)/backend -I$(srcdir)/backend/include -I$(srcdir)/libpq
1515

1616
#
17-
# try locating libpq.a in the following places
18-
# Almost all (all?) the C programs in this directory
1917
# link with libpq, so we put it here.
2018
#
21-
LIBPQ:= -L$(srcdir)/libpq/$(objdir) -L$(LIBDIR) -lpq
19+
LIBPQ:= -L$(srcdir)/libpq/$(objdir) -lpq
2220

2321
LD_ADD+= $(LIBPQ)
2422
DPADD+= $(LIBPQ)

0 commit comments

Comments
 (0)