diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2011-02-10 19:30:57 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2011-02-10 19:31:39 -0300 |
commit | 289d7306555b2446d145c7e098c91b6ca20bd54c (patch) | |
tree | b1c35d27a1dc4cf6dc6a603c2ee5bd6dee125678 | |
parent | 135724ec357f9b9c8800567444724c72da2cc6be (diff) | |
download | postgresql-289d7306555b2446d145c7e098c91b6ca20bd54c.tar.gz postgresql-289d7306555b2446d145c7e098c91b6ca20bd54c.zip |
Fix the isolation tester compilation on VPATH builds
-rw-r--r-- | src/test/isolation/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/isolation/Makefile b/src/test/isolation/Makefile index 1d4c7db8bc4..ae04f6cc1a2 100644 --- a/src/test/isolation/Makefile +++ b/src/test/isolation/Makefile @@ -10,7 +10,7 @@ ifeq ($(PORTNAME), win32) LDLIBS += -lws2_32 endif -override CPPFLAGS := -I$(libpq_srcdir) $(CPPFLAGS) +override CPPFLAGS := -I$(srcdir) -I$(libpq_srcdir) $(CPPFLAGS) override LDLIBS := $(libpq_pgport) $(LDLIBS) OBJS = specparse.o isolationtester.o |