You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by en...@apache.org on 2017/09/01 00:34:48 UTC

hbase git commit: HBASE-18728 [C++] The library should be named libHBaseClient, instead of libHbaseClient

Repository: hbase
Updated Branches:
  refs/heads/HBASE-14850 82ada63db -> c60340b8a


HBASE-18728 [C++] The library should be named libHBaseClient, instead of libHbaseClient


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/c60340b8
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/c60340b8
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/c60340b8

Branch: refs/heads/HBASE-14850
Commit: c60340b8ab157d0540216ed26aa743fb9c8477ca
Parents: 82ada63
Author: Enis Soztutar <en...@apache.org>
Authored: Thu Aug 31 17:34:37 2017 -0700
Committer: Enis Soztutar <en...@apache.org>
Committed: Thu Aug 31 17:34:37 2017 -0700

----------------------------------------------------------------------
 hbase-native-client/Makefile | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/c60340b8/hbase-native-client/Makefile
----------------------------------------------------------------------
diff --git a/hbase-native-client/Makefile b/hbase-native-client/Makefile
index 708e907..c879f98 100644
--- a/hbase-native-client/Makefile
+++ b/hbase-native-client/Makefile
@@ -51,10 +51,10 @@ INCLUDES := $(addprefix -I,$(INCLUDE_DIR))
 LIB_DIR := /usr/local
 LIB_LIBDIR := $(LIB_DIR)/lib
 LIB_INCDIR := $(LIB_DIR)/include
-LIB_RELEASE := $(RELEASE_PATH)/libHbaseClient.so
-ARC_RELEASE := $(RELEASE_PATH)/libHbaseClient.a
-LIB_DEBUG := $(DEBUG_PATH)/libHbaseClient_d.so
-ARC_DEBUG := $(DEBUG_PATH)/libHbaseClient_d.a
+LIB_RELEASE := $(RELEASE_PATH)/libHBaseClient.so
+ARC_RELEASE := $(RELEASE_PATH)/libHBaseClient.a
+LIB_DEBUG := $(DEBUG_PATH)/libHBaseClient_d.so
+ARC_DEBUG := $(DEBUG_PATH)/libHBaseClient_d.a
 
 build: checkdirs protos $(LIB_DEBUG) $(LIB_RELEASE) $(ARC_DEBUG) $(ARC_RELEASE)
 
@@ -92,14 +92,14 @@ protos: $(PROTO_CXX_DIR) $(PROTOSRC) $(PROTOHDR)
 	@make -j8 all -f Makefile.protos
 
 install:
-	cp $(LIB_RELEASE) $(LIB_LIBDIR)/libHbaseClient.so
-	cp $(ARC_RELEASE) $(LIB_LIBDIR)/libHbaseClient.a
-	cp $(LIB_DEBUG) $(LIB_LIBDIR)/libHbaseClient_d.so
-	cp $(ARC_DEBUG) $(LIB_LIBDIR)/libHbaseClient_d.a
+	cp $(LIB_RELEASE) $(LIB_LIBDIR)/libHBaseClient.so
+	cp $(ARC_RELEASE) $(LIB_LIBDIR)/libHBaseClient.a
+	cp $(LIB_DEBUG) $(LIB_LIBDIR)/libHBaseClient_d.so
+	cp $(ARC_DEBUG) $(LIB_LIBDIR)/libHBaseClient_d.a
 	ldconfig
-	
+
 uninstall:
-	rm -f $(LIB_LIBDIR)/libHbaseClient.so $(LIB_LIBDIR)/libHbaseClient.a $(LIB_LIBDIR)/libHbaseClient_d.so $(ARC_DEBUG) $(LIB_LIBDIR)/libHbaseClient_d.a
+	rm -f $(LIB_LIBDIR)/libHBaseClient.so $(LIB_LIBDIR)/libHBaseClient.a $(LIB_LIBDIR)/libHBaseClient_d.so $(ARC_DEBUG) $(LIB_LIBDIR)/libHBaseClient_d.a
 	ldconfig
 
 $(PROTO_CXX_DIR):