From: Rob Browning Date: Sat, 25 Apr 2015 15:22:33 +0000 (-0500) Subject: Makefile: fix test pattern to include t/test.sh X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=92499d3cf4f0c697e429e1e344a14cda4c83d958;p=packages%2Fb%2Fbup.git Makefile: fix test pattern to include t/test.sh Signed-off-by: Rob Browning Tested-by: Rob Browning --- diff --git a/Makefile b/Makefile index 1189613..c0f1edc 100644 --- a/Makefile +++ b/Makefile @@ -122,8 +122,8 @@ cmdline_tests := \ t/test.sh # For parallel runs. -tmp-target-run-test-%: all t/tmp - TMPDIR="$(test_tmp)" t/test-$* +tmp-target-run-test%: all t/tmp + TMPDIR="$(test_tmp)" t/test$* runtests-cmdline: $(subst t/test-,tmp-target-run-test-,$(cmdline_tests))