summaryrefslogtreecommitdiffstats
path: root/util/Makefile
diff options
context:
space:
mode:
authortv <tv@nomic.retiolum>2013-09-02 17:51:05 +0200
committertv <tv@nomic.retiolum>2013-09-02 17:51:05 +0200
commite199ec06351365d4433b10c613100a2074b26f00 (patch)
treece8462af3638843908692dd7a69668278ce5ffab /util/Makefile
parentd502c59fdea2a84f291d5f414998aaaa58df9a25 (diff)
util make test: fix export PATH
Diffstat (limited to 'util/Makefile')
-rw-r--r--util/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/Makefile b/util/Makefile
index ffc400bd..90f8bfb2 100644
--- a/util/Makefile
+++ b/util/Makefile
@@ -1,8 +1,8 @@
usage:;cat Makefile
-test: export PATH := "$(PWD)/bin:$(PATH)"
test:
- @tests="`find t -type f -executable`"; \
+ @export PATH="$(PWD)/bin:$(PATH)"; \
+ tests="`find t -type f -executable`"; \
i=1; \
n=`echo "$$tests" | wc -l`; \
echo $$i..$$n; \