You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by aa...@apache.org on 2020/07/31 07:51:43 UTC

[hadoop] branch branch-3.3 updated: HDFS-14950. fix missing libhdfspp lib in dist-package (#1947)

This is an automated email from the ASF dual-hosted git repository.

aajisaka pushed a commit to branch branch-3.3
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.3 by this push:
     new e1ac16a  HDFS-14950. fix missing libhdfspp lib in dist-package (#1947)
e1ac16a is described below

commit e1ac16a31897a22fe80f94bec4dd20bbad70a026
Author: Yuan <yu...@outlook.com>
AuthorDate: Fri Jul 31 15:49:49 2020 +0800

    HDFS-14950. fix missing libhdfspp lib in dist-package (#1947)
    
    libhdfspp.{a,so} are missed in dist-package.
    This patch fixed this by copying these libs to the right directory
    
    Signed-off-by: Yuan Zhou <yu...@intel.com>
    (cherry picked from commit e756fe3590906bfd8ffe4ab5cc8b9b24a9b2b4b2)
---
 .../hadoop-hdfs-native-client/src/main/native/libhdfspp/CMakeLists.txt   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/CMakeLists.txt b/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/CMakeLists.txt
index 411320a..c17f9d3 100644
--- a/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/CMakeLists.txt
+++ b/hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/libhdfspp/CMakeLists.txt
@@ -263,6 +263,7 @@ if (HADOOP_BUILD)
     ${CMAKE_THREAD_LIBS_INIT}
   )
   set_target_properties(hdfspp PROPERTIES SOVERSION ${LIBHDFSPP_VERSION})
+  hadoop_dual_output_directory(hdfspp ${OUT_DIR})
 else (HADOOP_BUILD)
   add_library(hdfspp_static STATIC ${EMPTY_FILE_CC} ${LIBHDFSPP_ALL_OBJECTS})
   target_link_libraries(hdfspp_static


---------------------------------------------------------------------
To unsubscribe, e-mail: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org