From: Sage Weil Date: Wed, 25 Sep 2013 20:37:13 +0000 (-0700) Subject: Makefile: don't use srcdir in TESTS X-Git-Tag: v0.71~78^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=479936806ea0dc71ca20dcfebbca4594add416ac;p=ceph.git Makefile: don't use srcdir in TESTS src/Makefile-env.am:31: error: using '$(srcdir)' in TESTS is currently broken: '$(srcdir)/unittest_bufferlist.sh' src/Makefile.am:1: 'src/Makefile-env.am' included from here src/Makefile-env.am:31: error: using '$(srcdir)' in TESTS is currently broken: '$(srcdir)/test/encoding/check-generated.sh' src/Makefile.am:1: 'src/Makefile-env.am' included from here on my (raring) laptop. Signed-off-by: Sage Weil --- diff --git a/src/test/Makefile.am b/src/test/Makefile.am index bf036c914c8a..88cf1ce970fe 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -233,8 +233,8 @@ bin_DEBUGPROGRAMS += ceph_bench_log ## Unit tests check_SCRIPTS += \ - $(srcdir)/unittest_bufferlist.sh \ - $(srcdir)/test/encoding/check-generated.sh + unittest_bufferlist.sh \ + test/encoding/check-generated.sh # target to build but not run the unit tests unittests:: $(check_PROGRAMS)