From cb8992f818a977f481b0c0b9294f7452a85cc545 Mon Sep 17 00:00:00 2001 From: Steven Murray <Steven.Murray@cern.ch> Date: Tue, 20 Jun 2017 11:40:41 +0200 Subject: [PATCH] Packaged cta-objectsore-unfollow-agent --- cta.spec.in | 1 + objectstore/CMakeLists.txt | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/cta.spec.in b/cta.spec.in index 04e7c8588a..0ab7b14593 100644 --- a/cta.spec.in +++ b/cta.spec.in @@ -245,6 +245,7 @@ Tools allowing initialization and inspection of the object store. %attr(0755,root,root) %{_bindir}/cta-objectstore-initialize %attr(0755,root,root) %{_bindir}/cta-objectstore-list %attr(0755,root,root) %{_bindir}/cta-objectstore-dump-object +%attr(0755,root,root) %{_bindir}/cta-objectstore-unfollow-agent #cta-systemtests installs libraries so we need ldconfig. %post -n cta-systemtests -p /sbin/ldconfig diff --git a/objectstore/CMakeLists.txt b/objectstore/CMakeLists.txt index 10a02eed5d..6e7d0c0b0f 100644 --- a/objectstore/CMakeLists.txt +++ b/objectstore/CMakeLists.txt @@ -102,8 +102,9 @@ target_link_libraries(cta-objectstore-dump-object ${PROTOBUF3_LIBRARIES} ctaobjectstore ctacommon) add_executable(cta-objectstore-unfollow-agent cta-objectstore-unfollow-agent.cpp) +set_target_properties(cta-objectstore-unfollow-agent PROPERTIES INSTALL_RPATH ${PROTOBUF3_RPATH}) target_link_libraries(cta-objectstore-unfollow-agent ${PROTOBUF3_LIBRARIES} ctaobjectstore ctacommon) -install(TARGETS cta-objectstore-initialize cta-objectstore-list cta-objectstore-dump-object +install(TARGETS cta-objectstore-initialize cta-objectstore-list cta-objectstore-dump-object cta-objectstore-unfollow-agent DESTINATION usr/bin) -- GitLab