in
f528f173, in cmake, the target of executable "radosgw" is renamed
to "radosgwd", and the static library of "radosgw_a" was renamed to
"radosgw". this broke the tests which expected radosgw to be available
if "tests" was built.
in this change, both "vstart" and "tests" now depend on "radosgwd"
instead of "radosgw".
Signed-off-by: Kefu Chai <kchai@redhat.com>
add_dependencies(vstart ceph-mds cephfs cython_cephfs)
endif()
if(WITH_RADOSGW)
- add_dependencies(vstart radosgw radosgw-admin)
-endif(WITH_RADOSGW)
+ add_dependencies(vstart radosgwd radosgw-admin)
+endif()
if(WITH_LTTNG)
add_dependencies(vstart tracepoint_libraries)
endif(FREEBSD)
endif(WITH_RBD)
if(WITH_RADOSGW)
- add_dependencies(tests radosgw radosgw-admin)
-endif(WITH_RADOSGW)
+ add_dependencies(tests radosgwd radosgw-admin)
+endif()
#add dependency from fio just to ensure the plugin build isn't failing
if(WITH_FIO OR WITH_SYSTEM_FIO)
add_dependencies(tests fio_ceph_objectstore)