From cf8c94acb4ca63d92b73fda6351b6a8f315f4895 Mon Sep 17 00:00:00 2001 From: David Reiss Date: Fri, 3 Apr 2009 19:07:19 +0000 Subject: [PATCH] THRIFT-426. cpp: Fix include path under test/cpp git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@761763 13f79535-47bb-0310-9956-ffa450edef68 --- test/cpp/Thrift-test.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cpp/Thrift-test.mk b/test/cpp/Thrift-test.mk index 463b9c7e..fb3e38bc 100644 --- a/test/cpp/Thrift-test.mk +++ b/test/cpp/Thrift-test.mk @@ -46,9 +46,9 @@ CC = g++ LD = g++ # Compiler flags -DCFL = -Wall -O3 -g -I./gen-cpp $(include_flags) -L$(thrift_home)/lib/cpp/.libs -lthrift -lthriftnb -levent +DCFL = -Wall -O3 -g -I. -I./gen-cpp $(include_flags) -L$(thrift_home)/lib/cpp/.libs -lthrift -lthriftnb -levent LFL = -L$(thrift_home)/lib/cpp/.libs -lthrift -lthriftnb -levent -CCFL = -Wall -O3 -I./gen-cpp $(include_flags) +CCFL = -Wall -O3 -I. -I./gen-cpp $(include_flags) CFL = $(CCFL) $(LFL) all: server client -- 2.17.1