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 2016/01/12 13:02:24 UTC

celix git commit: CELIX-335: Fix invalid linking setup for linux for the tracker_depman example

Repository: celix
Updated Branches:
  refs/heads/feature/CELIX-335_deploy_refactoring 40bf19301 -> 17a075359


CELIX-335: Fix invalid linking setup for linux for the tracker_depman example


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

Branch: refs/heads/feature/CELIX-335_deploy_refactoring
Commit: 17a07535942c6c7f0ed5cc923a1c977aa4c12908
Parents: 40bf193
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Tue Jan 12 13:01:42 2016 +0100
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Tue Jan 12 13:01:42 2016 +0100

----------------------------------------------------------------------
 examples/whiteboard/tracker_depman/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/17a07535/examples/whiteboard/tracker_depman/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/examples/whiteboard/tracker_depman/CMakeLists.txt b/examples/whiteboard/tracker_depman/CMakeLists.txt
index a2d6287..3bd5942 100644
--- a/examples/whiteboard/tracker_depman/CMakeLists.txt
+++ b/examples/whiteboard/tracker_depman/CMakeLists.txt
@@ -32,5 +32,5 @@ include_directories("${PROJECT_SOURCE_DIR}/log_service/public/include")
 IF(APPLE)
 target_link_libraries(tracker_depman celix_framework -Wl,-all_load dependency_manager_static)
 else()
-target_link_libraries(tracker_depman -Wl,--whole-archive dependency_manager -Wl,--no-whole-archive celix_framework_static)
+target_link_libraries(tracker_depman -Wl,--whole-archive dependency_manager_static -Wl,--no-whole-archive celix_framework)
 ENDIF()