Makefile.global failed to define $(LIBS), which is
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 25 Jun 1999 00:13:45 +0000 (00:13 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 25 Jun 1999 00:13:45 +0000 (00:13 +0000)
unfortunate considering that several subdirectory makefiles were counting
on it to do so...

src/Makefile.global.in

index 741da9c12aba45f6ea3b9414814a4e6b01e7edb1..c35bc0e99057c962c7482d5b027c297696922aaf 100644 (file)
@@ -206,7 +206,8 @@ LEX= @LEX@
 AROPT= @AROPT@
 CFLAGS= -I$(SRCDIR)/include -I$(SRCDIR)/backend @CPPFLAGS@ @CFLAGS@
 CFLAGS_SL= @SHARED_LIB@
-LDFLAGS= @LDFLAGS@ @LIBS@
+LIBS= @LIBS@
+LDFLAGS= @LDFLAGS@ $(LIBS)
 DLSUFFIX= @DLSUFFIX@
 LN_S= @LN_S@
 TAR= @tar@