aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDmitrij D. Czarkoff <czarkoff@gmail.com>2016-02-21 15:03:21 +0100
committerDmitrij D. Czarkoff <czarkoff@gmail.com>2016-02-21 15:03:21 +0100
commitb4dfe40a577aa23bcac2d580122a13246e431d66 (patch)
tree910a6bb49b20a26cb594c38ee2dcf513bdb77ba5 /Makefile
parent1efd760b8d7593f05d700f122fe8c3f61c370bde (diff)
downloadimv-b4dfe40a577aa23bcac2d580122a13246e431d66.tar.gz
Fix "check" target
for i in "..."; do ...; done ideom guarantees single iteration with $i set to everything between "in" and ';'.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 32010a7..4cefbe1 100644
--- a/Makefile
+++ b/Makefile
@@ -49,7 +49,7 @@ $(BUILDDIR)/test_%: test/%.c src/%.c
check: $(BUILDDIR) $(TESTS)
@echo "RUNNING TESTS"
- $(MUTE)for t in "$(TESTS)"; do $$t; done
+ $(MUTE)for t in $(TESTS); do $$t; done
clean:
$(MUTE)$(RM) -Rf $(BUILDDIR)