You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2015/07/04 18:30:39 UTC

celix git commit: CELIX-237: Add build options to use full rpath paths to prevent the need for LD_LIBRARY_PATH for CI

Repository: celix
Updated Branches:
  refs/heads/feature/CELIX-237_rsa-ffi 04c384714 -> dbdda15ed


CELIX-237: Add build options to use full rpath paths to prevent the need for LD_LIBRARY_PATH for CI


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

Branch: refs/heads/feature/CELIX-237_rsa-ffi
Commit: dbdda15ed42d399362311ac0e9e862bd5d3ccd9c
Parents: 04c3847
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Sat Jul 4 18:29:38 2015 +0200
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Sat Jul 4 18:29:38 2015 +0200

----------------------------------------------------------------------
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/dbdda15e/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
index 1f0c324..26e664d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,7 +22,7 @@ before_script:
     - cd ..
     - mkdir build install
     - cd build
-    - cmake -DENABLE_CODE_COVERAGE=ON -DBUILD_DEPLOYMENT_ADMIN=ON -DBUILD_EXAMPLES=ON -DBUILD_LOG_SERVICE=ON -DBUILD_LOG_WRITER=ON -DBUILD_REMOTE_SERVICE_ADMIN=ON -DBUILD_RSA_DISCOVERY_CONFIGURED=ON -DBUILD_RSA_DISCOVERY_ETCD=ON -DBUILD_RSA_DISCOVERY_SHM=ON -DBUILD_RSA_EXAMPLES=ON -DBUILD_RSA_REMOTE_SERVICE_ADMIN_SHM=ON -DBUILD_RSA_REMOTE_SERVICE_ADMIN_HTTP=ON -DBUILD_REMOTE_SHELL=ON -DBUILD_SHELL=ON -DBUILD_SHELL_TUI=ON -DCMAKE_INSTALL_PREFIX=../install ..
+    - cmake -DCMAKE_SKIP_BUILD_RPATH=FALSE -DENABLE_CODE_COVERAGE=ON -DBUILD_DEPLOYMENT_ADMIN=ON -DBUILD_EXAMPLES=ON -DBUILD_LOG_SERVICE=ON -DBUILD_LOG_WRITER=ON -DBUILD_REMOTE_SERVICE_ADMIN=ON -DBUILD_RSA_DISCOVERY_CONFIGURED=ON -DBUILD_RSA_DISCOVERY_ETCD=ON -DBUILD_RSA_DISCOVERY_SHM=ON -DBUILD_RSA_EXAMPLES=ON -DBUILD_RSA_REMOTE_SERVICE_ADMIN_SHM=ON -DBUILD_RSA_REMOTE_SERVICE_ADMIN_HTTP=ON -DBUILD_REMOTE_SHELL=ON -DBUILD_SHELL=ON -DBUILD_SHELL_TUI=ON -DCMAKE_INSTALL_PREFIX=../install ..
 
 script: 
     - make all && make deploy && make coverage && make install-all