projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f098af5
)
Makefile.global failed to define $(LIBS), which is
author
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 25 Jun 1999 00:13:45 +0000
(
00:13
+0000)
committer
Tom 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
patch
|
blob
|
blame
|
history
diff --git
a/src/Makefile.global.in
b/src/Makefile.global.in
index 741da9c12aba45f6ea3b9414814a4e6b01e7edb1..c35bc0e99057c962c7482d5b027c297696922aaf 100644
(file)
--- a/
src/Makefile.global.in
+++ b/
src/Makefile.global.in
@@
-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@