* cfg.mk (sc_tests_executable): If there are files with
$TEST_EXTENSIONS in the current directory, then the
lack of quoting of the $test_extensions_rx contents
could result in globbing and an inconsequential run.
find(1) produces warnings only with more than one expansion.
# Ensure that all version-controlled test scripts are executable.
sc_tests_executable:
- @test_extensions_rx=`echo $(TEST_EXTENSIONS) \
- | sed -e "s/ / -o -name */g" -e "s/^/-name */"`; \
- find tests/ \( $$test_extensions_rx \) \! -perm -u+x -print \
- | sed -e "s/^/$(ME): Please make test executable: /" | grep . \
+ @test_extensions_rx=`printf -- "-name '*%s' " $(TEST_EXTENSIONS)`;\
+ find tests/ \( $$test_extensions_rx \) \! -perm -u+x -print \
+ | sed -e "s/^/$(ME): Please make test executable: /" | grep . \
&& exit 1; :
# Ensure all gnulib patches apply cleanly