diff options
author | Jason Dillaman <dillaman@redhat.com> | 2015-07-28 21:27:24 +0200 |
---|---|---|
committer | Jason Dillaman <dillaman@redhat.com> | 2015-07-28 21:44:49 +0200 |
commit | fa78739933d7b9501116a12a4fbfd58b5ca99cdb (patch) | |
tree | e8ce9fe336037aea726df10c445a34c37c0b5672 /src/Makefile-client.am | |
parent | Merge pull request #5350 from ceph/wip-pgls-filter-enc (diff) | |
download | ceph-fa78739933d7b9501116a12a4fbfd58b5ca99cdb.tar.xz ceph-fa78739933d7b9501116a12a4fbfd58b5ca99cdb.zip |
rbd: remove dependency on non-ABI controlled CephContext
The rbd CLI tool no longer attempts to initialize a CephContext
and pass said context to librados since it's possible that the
structure will not be ABI compatible between rbd and librados.
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
Diffstat (limited to 'src/Makefile-client.am')
-rw-r--r-- | src/Makefile-client.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile-client.am b/src/Makefile-client.am index d68d70db318..e89565da5a2 100644 --- a/src/Makefile-client.am +++ b/src/Makefile-client.am @@ -60,7 +60,7 @@ noinst_LTLIBRARIES += libkrbd.la endif # LINUX rbd_SOURCES = rbd.cc -rbd_LDADD = $(LIBKRBD) $(LIBRBD) $(LIBRADOS) $(CEPH_GLOBAL) +rbd_LDADD = $(LIBKRBD) $(LIBRBD) $(LIBRADOS) if LINUX bin_PROGRAMS += rbd endif # LINUX |