diff options
author | Dan Mick <dan.mick@dreamhost.com> | 2012-04-27 18:04:34 -0700 |
---|---|---|
committer | Sage Weil <sage.weil@dreamhost.com> | 2012-04-28 07:45:34 -0700 |
commit | f922dc4355dff2d8de1540aa8bcdfd1c93e74e29 (patch) | |
tree | 54d1a354be979acd5ec738414a72693a246d3746 | |
parent | e44b126c409d2bdbd2896dc2338e4b9eb06a6ac2 (diff) | |
download | ceph-f922dc4355dff2d8de1540aa8bcdfd1c93e74e29.tar.gz |
Stop rebuild of libcommon.la on "make dist"
Fixes: 2356
Reviewed-by: Josh Durgin <josh.durgin@dreamhost.com>
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index bfbf5e648a3..2a7e0bd3022 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -534,9 +534,9 @@ unittest_ceph_argparse_LDADD = libglobal.la ${UNITTEST_LDADD} unittest_ceph_argparse_CXXFLAGS = ${AM_CXXFLAGS} ${UNITTEST_CXXFLAGS} check_PROGRAMS += unittest_ceph_argparse -unittest_osd_types_SOURCES = test/test_osd_types.cc libcommon.la +unittest_osd_types_SOURCES = test/test_osd_types.cc unittest_osd_types_CXXFLAGS = ${AM_CXXFLAGS} ${UNITTEST_CXXFLAGS} -unittest_osd_types_LDADD = libglobal.la $(PTHREAD_LIBS) -lm ${UNITTEST_LDADD} $(CRYPTO_LIBS) $(EXTRALIBS) +unittest_osd_types_LDADD = libglobal.la libcommon.la $(PTHREAD_LIBS) -lm ${UNITTEST_LDADD} $(CRYPTO_LIBS) $(EXTRALIBS) check_PROGRAMS += unittest_osd_types unittest_gather_SOURCES = test/gather.cc |