aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-11-03 14:06:06 +0100
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>2023-11-03 14:06:06 +0100
commit2a56aa5a0687c3eda427e5c42ed9f9e429f3b950 (patch)
tree9fe7b57ae7f4ac0f098d06e7d80b3f77906bb362
parentbc91656de872e68d56a611d5ae73719eda2c5792 (diff)
downloadlibgpiod-2a56aa5a0687c3eda427e5c42ed9f9e429f3b950.tar.gz
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 <bartosz.golaszewski@linaro.org>
-rw-r--r--tools/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 40ea3a32..bf6170a1 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