From 130d95e78d368b18a79d34b635246961072ba767 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Tue, 26 Mar 2013 15:12:24 +0000 Subject: [PATCH] HBASE-8005 DemoClient.cpp can not be built correctly git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1461177 13f79535-47bb-0310-9956-ffa450edef68 --- hbase-examples/src/main/cpp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hbase-examples/src/main/cpp/Makefile b/hbase-examples/src/main/cpp/Makefile index aab59514369..20c9f8d6908 100644 --- a/hbase-examples/src/main/cpp/Makefile +++ b/hbase-examples/src/main/cpp/Makefile @@ -28,7 +28,7 @@ GEN_SRC = ./gen-cpp/Hbase.cpp \ default: DemoClient DemoClient: DemoClient.cpp - g++ -o DemoClient -I${THRIFT_DIR} -I./gen-cpp -L${LIB_DIR} -Wl,-rpath,${LIB_DIR} -lthrift DemoClient.cpp ${GEN_SRC} + g++ -o DemoClient -I${THRIFT_DIR} -I./gen-cpp -L${LIB_DIR} -Wl,-rpath,${LIB_DIR} DemoClient.cpp ${GEN_SRC} -lthrift clean: rm -rf DemoClient