From 4c662fd3fe07f3588a105eec1ebf90dbf2f365d6 Mon Sep 17 00:00:00 2001 From: Aaron Myers Date: Wed, 24 Apr 2013 00:47:13 +0000 Subject: [PATCH] HDFS-4737. JVM path embedded in fuse binaries. Contributed by Sean Mackrory. git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1471215 13f79535-47bb-0310-9956-ffa450edef68 --- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 2 ++ .../hadoop-hdfs/src/main/native/fuse-dfs/CMakeLists.txt | 2 ++ 2 files changed, 4 insertions(+) diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index dd13bb478f..b46d20f4e2 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -580,6 +580,8 @@ Release 2.0.5-beta - UNRELEASED HDFS-4695. TestEditLog leaks open file handles between tests. (Ivan Mitic via suresh) + HDFS-4737. JVM path embedded in fuse binaries. (Sean Mackrory via atm) + Release 2.0.4-alpha - UNRELEASED INCOMPATIBLE CHANGES diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/main/native/fuse-dfs/CMakeLists.txt b/hadoop-hdfs-project/hadoop-hdfs/src/main/native/fuse-dfs/CMakeLists.txt index 39828dcd66..dd3f1e62ab 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/main/native/fuse-dfs/CMakeLists.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/src/main/native/fuse-dfs/CMakeLists.txt @@ -16,6 +16,8 @@ # limitations under the License. # +set(CMAKE_SKIP_RPATH TRUE) + # Find Linux FUSE IF (${CMAKE_SYSTEM_NAME} MATCHES "Linux") find_package(PkgConfig REQUIRED)