Fix PL/Tcl for vpath builds.

Commit cd37bb7859 works for in-tree builds, but not so much for
VPATH.  Per buildfarm.
This commit is contained in:
Tom Lane 2016-03-25 17:13:03 -04:00
parent cd37bb7859
commit 9f73a2f6d1
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
override CPPFLAGS := $(TCL_INCLUDE_SPEC) $(CPPFLAGS)
override CPPFLAGS := -I. -I$(srcdir) $(TCL_INCLUDE_SPEC) $(CPPFLAGS)
# On Windows, we don't link directly with the Tcl library; see below
ifneq ($(PORTNAME), win32)