tools: tests: include the test script in the release tarball
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 3 Nov 2023 13:06:06 +0000 (14:06 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Fri, 3 Nov 2023 13:06:06 +0000 (14:06 +0100)
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>
tools/Makefile.am

index 40ea3a3263df0c32d55874a1e54f532efa5464ed..bf6170a11f9538bcb09bdce2389d73133dbb3d28 100644 (file)
@@ -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