diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-06-25 00:13:45 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-06-25 00:13:45 +0000 |
commit | b692c956ba08476bc3b5380943539bdcb70234d0 (patch) | |
tree | 227d8608ed8cbe6ba2a7e8e7c302dfae7bafcfb2 | |
parent | d12561040cf63a87f16c98782c1dd195edc9827c (diff) | |
download | postgresql-b692c956ba08476bc3b5380943539bdcb70234d0.tar.gz postgresql-b692c956ba08476bc3b5380943539bdcb70234d0.zip |
Makefile.global failed to define $(LIBS), which is
unfortunate considering that several subdirectory makefiles were counting
on it to do so...
-rw-r--r-- | src/Makefile.global.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 90fdff334ef..4f393d7ee16 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.55 1999/02/02 03:43:56 momjian Exp $ +# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.56 1999/06/25 00:13:45 tgl Exp $ # # NOTES # Essentially all Postgres make files include this file and use the @@ -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@ |