From f9b70f9e4e2d0a0212677ccb7dfc4b1edd1d1876 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Mon, 2 Jun 2014 11:34:19 +0200 Subject: [PATCH] build_style/cmake: remove CMAKE_SKIP_RPATH; let the sw handle it. --- common/build_style/cmake.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build_style/cmake.sh b/common/build_style/cmake.sh index 1e2b0b98806..d49a9b9608f 100644 --- a/common/build_style/cmake.sh +++ b/common/build_style/cmake.sh @@ -22,7 +22,7 @@ SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) _EOF configure_args+=" -DCMAKE_TOOLCHAIN_FILE=cross_${XBPS_CROSS_TRIPLET}.cmake" fi - configure_args+=" -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_RPATH=ON" + configure_args+=" -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release" cmake ${configure_args} .. }