Avoid using $(top_srcdir) in TESTS.

Newer automakes don't like this.
This commit is contained in:
Nick Mathewson 2013-02-08 22:10:05 -05:00
parent ebf278b28d
commit 2863c83700
2 changed files with 10 additions and 2 deletions

View File

@ -135,6 +135,7 @@ noinst_HEADERS=
noinst_PROGRAMS=
EXTRA_PROGRAMS=
CLEANFILES=
DISTCLEANFILES=
BUILT_SOURCES =
include include/include.am
include sample/include.am
@ -293,5 +294,5 @@ doxygen: FORCE
doxygen $(srcdir)/Doxyfile
FORCE:
DISTCLEANFILES = *~ libevent.pc ./include/event2/event-config.h
DISTCLEANFILES += *~ libevent.pc ./include/event2/event-config.h

View File

@ -42,7 +42,14 @@ noinst_HEADERS+= \
test/tinytest_local.h \
test/tinytest_macros.h
TESTS = $(top_srcdir)/test/test.sh
# We need to copy this file, since automake doesn't want us to use top_srcdir
# in TESTS.
TESTS = test/test-script.sh
test/test-script.sh: test/test.sh
cp $< $@
DISTCLEANFILES += test/test-script.sh
if BUILD_REGRESS
BUILT_SOURCES += test/regress.gen.c test/regress.gen.h