From: Robert Haas Date: Wed, 15 Feb 2012 20:52:44 +0000 (-0500) Subject: Fix VPATH builds, broken by my recent commit to speed up tuplesorting. X-Git-Tag: REL9_2_BETA1~413 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=edec8c8e00e3f2a9305ab92e2c81293457cf959a;p=thirdparty%2Fpostgresql.git Fix VPATH builds, broken by my recent commit to speed up tuplesorting. The relevant commit is 337b6f5ecf05b21b5e997986884d097d60e4e3d0. --- diff --git a/src/backend/utils/sort/Makefile b/src/backend/utils/sort/Makefile index f46ce416105..370b12cee6c 100644 --- a/src/backend/utils/sort/Makefile +++ b/src/backend/utils/sort/Makefile @@ -12,6 +12,8 @@ subdir = src/backend/utils/sort top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global +override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS) + OBJS = logtape.o sortsupport.o tuplesort.o tuplestore.o tuplesort.o: qsort_tuple.c