From 2a56aa5a0687c3eda427e5c42ed9f9e429f3b950 Mon Sep 17 00:00:00 2001 From: Bartosz Golaszewski Date: Fri, 3 Nov 2023 14:06:06 +0100 Subject: [PATCH] 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 --- tools/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2