From: Bartosz Golaszewski Date: Fri, 3 Nov 2023 13:06:06 +0000 (+0100) Subject: tools: tests: include the test script in the release tarball X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2a56aa5a0687c3eda427e5c42ed9f9e429f3b950;p=qemu-gpiodev%2Flibgpiod.git tools: tests: include the test script in the release tarball Apparently bash scripts need to be listed in the dist_noinst_SCRIPTS in order to be picked up into the dist package, noinst_SCRIPTS is not enough. Fixes: 555f5e4cfe9f ("tools: tests: port tests to shunit2") Signed-off-by: Bartosz Golaszewski --- diff --git a/tools/Makefile.am b/tools/Makefile.am index 40ea3a3..bf6170a 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -20,6 +20,6 @@ bin_PROGRAMS = gpiodetect gpioinfo gpioget gpioset gpiomon gpionotify if WITH_TESTS -noinst_SCRIPTS = gpio-tools-test.bash +dist_noinst_SCRIPTS = gpio-tools-test.bash endif