diff options
author | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2016-12-07 15:43:06 +0200 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2017-01-11 15:00:53 -0500 |
commit | 06a3e7ef3bf9a907f1fba84a3601870a5697f657 (patch) | |
tree | 6371cb5334b512f25abdf1cbbf081e6981697117 /test | |
parent | 543287e60af5e9d91b5fc7e4a42e51eafa63db21 (diff) |
test: fix distributing scripts
Fix the following error on 'make distcheck':
make[6]: *** No rule to make target 'scripts/xvfb-piglit.sh', needed by 'scripts/xvfb-piglit.sh.log'. Stop.
make[6]: Leaving directory '/home/pq/git/xserver/xorg-server-1.19.99.1/_build/sub/test'
Makefile:1367: recipe for target 'check-TESTS' failed
The setup to trigger this is:
$ ./configure --prefix=/home/pq/local --disable-docs
--disable-devel-docs --enable-xwayland --disable-xorg --disable-xvfb
--disable-xnest --disable-xquartz --disable-xwin --enable-debug
SCRIPT_TESTS is populated conditionally, but we should distribute the
scripts in any case.
Reviewed-by: Adam Jackson <ajax@redhat.com>
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
(cherry picked from commit b365c5d16894a259dbf29db4ca2640d8ed768063)
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index b8a0f4d9d..064e1c5b7 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -166,7 +166,8 @@ libxservertest_la_DEPENDENCIES = $(libxservertest_la_LIBADD) endif EXTRA_DIST = \ - $(SCRIPT_TESTS) \ + scripts/xvfb-piglit.sh \ + scripts/xephyr-glamor-piglit.sh \ scripts/xinit-piglit-session.sh \ scripts/run-piglit.sh \ ddxstubs.c \ |