You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2013/03/26 16:12:24 UTC

svn commit: r1461177 - /hbase/trunk/hbase-examples/src/main/cpp/Makefile

Author: stack
Date: Tue Mar 26 15:12:24 2013
New Revision: 1461177

URL: http://svn.apache.org/r1461177
Log:
HBASE-8005 DemoClient.cpp can not be built correctly

Modified:
    hbase/trunk/hbase-examples/src/main/cpp/Makefile

Modified: hbase/trunk/hbase-examples/src/main/cpp/Makefile
URL: http://svn.apache.org/viewvc/hbase/trunk/hbase-examples/src/main/cpp/Makefile?rev=1461177&r1=1461176&r2=1461177&view=diff
==============================================================================
--- hbase/trunk/hbase-examples/src/main/cpp/Makefile (original)
+++ hbase/trunk/hbase-examples/src/main/cpp/Makefile Tue Mar 26 15:12:24 2013
@@ -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