Skip to content
Snippets Groups Projects
Commit 776ec78e authored by Tom Lane's avatar Tom Lane
Browse files

Attaching -lpq to LDFLAGS doesn't work, because the generated command

puts that before the .c file name.
parent f3ad615c
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ top_builddir = ../../.. ...@@ -7,7 +7,7 @@ top_builddir = ../../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS)
LDFLAGS += $(libpq) override LDLIBS := $(libpq) -lpgport $(LDLIBS)
PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo PROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment