Commit 552348c1 authored by Peter Eisentraut's avatar Peter Eisentraut

The libpq library directory was mentioned here in the wrong place, which

might lead to a previously installed libpq being used instead.  But we
don't actually have to link with libpq here at all, so remove it.
parent 862c3ff0
......@@ -3,7 +3,7 @@ override CPPFLAGS := -I../../include -I$(top_srcdir)/src/interfaces/ecpg/include
override CFLAGS += $(PTHREAD_CFLAGS)
override LDFLAGS := -L../../ecpglib -L../../pgtypeslib $(LDFLAGS)
override LIBS := -lecpg -lpgtypes $(libpq) $(LIBS) $(PTHREAD_LIBS)
override LIBS := -lecpg -lpgtypes $(LIBS) $(PTHREAD_LIBS)
ECPG = ../../preproc/ecpg --regression -I$(srcdir)/../../include
......@@ -15,4 +15,3 @@ ECPG = ../../preproc/ecpg --regression -I$(srcdir)/../../include
clean:
rm -f $(TESTS) $(TESTS:%=%.o) $(TESTS:%=%.c)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment