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

Commit b692c95

Browse files
committed
Makefile.global failed to define $(LIBS), which is
unfortunate considering that several subdirectory makefiles were counting on it to do so...
1 parent d125610 commit b692c95

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Makefile.global.in

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.55 1999/02/02 03:43:56 momjian Exp $
10+
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.56 1999/06/25 00:13:45 tgl Exp $
1111
#
1212
# NOTES
1313
# Essentially all Postgres make files include this file and use the
@@ -206,7 +206,8 @@ LEX= @LEX@
206206
AROPT= @AROPT@
207207
CFLAGS= -I$(SRCDIR)/include -I$(SRCDIR)/backend @CPPFLAGS@ @CFLAGS@
208208
CFLAGS_SL= @SHARED_LIB@
209-
LDFLAGS= @LDFLAGS@ @LIBS@
209+
LIBS= @LIBS@
210+
LDFLAGS= @LDFLAGS@ $(LIBS)
210211
DLSUFFIX= @DLSUFFIX@
211212
LN_S= @LN_S@
212213
TAR= @tar@

0 commit comments

Comments
 (0)