summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-01 20:13:46 -0400
committerDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-01 20:13:46 -0400
commit7a5886fba68ff43fbabcd7836c1ea3e49d8d6d91 (patch)
treede56de497500267e1b48ecd04f19feb29cce7082
parentd68a3445d69542161bcebd68dd55f38ca8337042 (diff)
downloadsloccount-git-7a5886fba68ff43fbabcd7836c1ea3e49d8d6d91.tar.gz
makefile: Fix "test" in makefile
- Handle spaces in PATH directories
-rw-r--r--makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/makefile b/makefile
index 0c029f1..5359766 100644
--- a/makefile
+++ b/makefile
@@ -241,6 +241,8 @@ rpm: distribute
echo "Use rpm -e $(NAME) to remove the package"
test: all
- PATH=.:${PATH}; sloccount testcode
+ @echo "Starting test..."
+ PATH=".:${PATH}" ./sloccount testcode
+ @echo "Ending test."