diff options
author | Miloslav Trmac <mitr@volny.cz> | 2003-06-29 15:35:06 +0000 |
---|---|---|
committer | Miloslav Trmac <mitr@volny.cz> | 2003-06-29 15:35:06 +0000 |
commit | fc2743e206a9b056f6f306e8e1365f8a03afa2bf (patch) | |
tree | dd1bb10ea4ea5f584765203e8f5329f206cef50e /test | |
parent | 928d7f3cadc94c59a207f6f656652d858f4a85e7 (diff) | |
download | dbus-fc2743e206a9b056f6f306e8e1365f8a03afa2bf.tar.gz |
2003-06-29 Miloslav Trmac <mitr@volny.cz>
* doc/Makefile.am:
* tools/Makefile.am: Don't assume srcdir == builddir.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index 227f0dba..04df3510 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -70,10 +70,10 @@ dist-hook: for D in $(TESTDIRS); do \ test -d $(distdir)/$$D || mkdir $(distdir)/$$D || exit 1 ; \ done ; \ - FILES=`$(FIND_TESTS) -o -name "*.in"` ; \ + FILES=`(cd $(srcdir) && $(FIND_TESTS) -o -name "*.in" -a -not -name Makefile.in)` ; \ for F in $$FILES; do \ echo '-- Disting file '$$F ; \ - cp $$F $(distdir)/$$F || exit 1 ; \ + cp $(srcdir)/$$F $(distdir)/$$F || exit 1 ; \ done ## copy tests to builddir so that generated tests and static tests |