diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T14·33+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-02-01T14·33+0100 |
commit | 28dc4883356a50f2805a3e3c819a541c44a4ff0a (patch) | |
tree | 7e1856b1838418efb2f3eaf137fe30565c2a83e3 | |
parent | 1eff3ad37fdb9dcf9f8528fdacea0ebf0e79d545 (diff) |
installcheck: Don't depend on install
This is a hack to prevent "installcheck" from clobbering files fixed up by Nixpkgs' fixupPhase.
-rw-r--r-- | tests.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests.mk b/tests.mk index 339abd5803f1..bb94a83ac3a2 100644 --- a/tests.mk +++ b/tests.mk @@ -10,7 +10,7 @@ define run-install-test = endef -installcheck: install +installcheck: @total=0; failed=0; for i in $(_installcheck-list); do \ total=$$((total + 1)); \ echo "running test $$i"; \ |