]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
src/tools: fix compile error (master version issue)
authormyoungwon oh <omwmw@sk.com>
Sat, 26 Jan 2019 03:35:47 +0000 (12:35 +0900)
committermyoungwon oh <omwmw@sk.com>
Wed, 6 Feb 2019 15:06:27 +0000 (00:06 +0900)
Signed-off-by: Myoungwon Oh <omwmw@sk.com>
alpine/APKBUILD.in
ceph.spec.in
debian/ceph-test.install
src/tools/CMakeLists.txt

index 7ddb5de452144f6ca29576af3ad1ce34e41ee50e..96037883f557d13319649a25d98989825643cad4 100644 (file)
@@ -435,7 +435,8 @@ ceph_test() {
                ceph-monstore-tool \
                ceph-osdomap-tool \
                ceph-kvstore-tool \
-               ceph-debugpack
+               ceph-debugpack \
+               cephdeduptool
 
        _pkg $_libdir ceph/ceph-monstore-update-crush.sh
 }
index 6e18025ebce83f782567dbf60338a893f58dbba6..cc47658f84a811177b5e549bcc44fc213c1a060f 100644 (file)
@@ -1898,6 +1898,7 @@ fi
 %{_bindir}/ceph_test_*
 %{_bindir}/ceph-coverage
 %{_bindir}/ceph-debugpack
+%{_bindir}/cephdeduptool
 %{_mandir}/man8/ceph-debugpack.8*
 %dir %{_libdir}/ceph
 %{_libdir}/ceph/ceph-monstore-update-crush.sh
index e2ccb9fe8000990cf41705ba758c271ea41201b1..200269fa6d50dd6c973745a5c637e5c3b77d7363 100644 (file)
@@ -17,5 +17,6 @@ usr/bin/ceph_rgw_multiparser
 usr/bin/ceph_scratchtool
 usr/bin/ceph_scratchtoolpp
 usr/bin/ceph_test_*
+usr/bin/cephdeduptool
 usr/lib/ceph/ceph-monstore-update-crush.sh
 usr/share/java/libcephfs-test.jar
index 733ae31fc25b63c0e1f7a53ab3dda901fe9cca0d..a799a6c96f1934b3f2103a951e36eda667a419cb 100644 (file)
@@ -102,7 +102,7 @@ install(TARGETS ceph-authtool DESTINATION bin)
 
 set(cephdeduptool_srcs ceph_dedup_tool.cc)
 add_executable(cephdeduptool ${cephdeduptool_srcs})
-target_link_libraries(cephdeduptool librados global cls_cas_client)
+target_link_libraries(cephdeduptool librados-cxx global cls_cas_client)
 install(TARGETS cephdeduptool DESTINATION bin)
 
 if(WITH_CEPHFS)