diff options
author | Nathan Cutler <ncutler@suse.com> | 2018-07-21 08:30:03 +0200 |
---|---|---|
committer | Nathan Cutler <ncutler@suse.com> | 2018-07-21 12:22:49 +0200 |
commit | ed76f04c6852064235152ca85e5bf7b2e5b47994 (patch) | |
tree | 8a28f83bf0fe36339da708aff2a1f98ef0b5243f | |
parent | Merge PR #23139 into master (diff) | |
download | ceph-ed76f04c6852064235152ca85e5bf7b2e5b47994.tar.xz ceph-ed76f04c6852064235152ca85e5bf7b2e5b47994.zip |
example/librados: remove dependency on Boost system library
109e6022beb0920f2a4746bd8c541e975494f251 introduced "-lboost_system" into
example/librados/Makefile but the Boost system library is no longer required
to compile and link hello_world.cc.
Fixes: http://tracker.ceph.com/issues/25054
Signed-off-by: Nathan Cutler <ncutler@suse.com>
-rw-r--r-- | examples/librados/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/librados/Makefile b/examples/librados/Makefile index 90fe7ecb55d..e51c045a65d 100644 --- a/examples/librados/Makefile +++ b/examples/librados/Makefile @@ -1,7 +1,7 @@ CXX?=g++ CXX_FLAGS?=-std=c++11 -Wall -Wextra -Werror -g -CXX_LIBS?=-lboost_system -lrados -lradosstriper +CXX_LIBS?=-lrados -lradosstriper CXX_INC?=$(LOCAL_LIBRADOS_INC) CXX_CC=$(CXX) $(CXX_FLAGS) $(CXX_INC) $(LOCAL_LIBRADOS) |