aboutsummaryrefslogtreecommitdiffstats
path: root/early-plugins.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-11-18 22:14:29 +0100
committerLoïc Hoguin <[email protected]>2017-11-18 22:14:29 +0100
commite7626e77bb49bbd631773d0b9d2b27b20a792531 (patch)
tree1c3fd9ea3e9f9b7ae7f3c62450adba39fcad243c /early-plugins.mk
parentb27e683111df57a03d2ee8c7c9a9446b74fac52f (diff)
downloadci.erlang.mk-e7626e77bb49bbd631773d0b9d2b27b20a792531.tar.gz
ci.erlang.mk-e7626e77bb49bbd631773d0b9d2b27b20a792531.tar.bz2
ci.erlang.mk-e7626e77bb49bbd631773d0b9d2b27b20a792531.zip
Most recent Erlang.mk will no longer require sec expansion
Diffstat (limited to 'early-plugins.mk')
-rw-r--r--early-plugins.mk14
1 files changed, 7 insertions, 7 deletions
diff --git a/early-plugins.mk b/early-plugins.mk
index 89ee409..e6afc48 100644
--- a/early-plugins.mk
+++ b/early-plugins.mk
@@ -47,13 +47,13 @@ CI_AUTO_CLEANUP_TARGETS := $(foreach t,$(OTP-DROPPED),ci-auto-cleanup-$t)
.PHONY: ci-auto-cleanup $(CI_AUTO_CLEANUP_TARGETS)
define ci_auto_cleanup_target
-ci-auto-cleanup-$1: $$(KERL)
- $$(verbose) $$(KERL) list builds | grep -q "^git,$1$$$$" && $$(KERL) delete build $1 || true
- $$(verbose) $$(KERL) list installations | grep -q "^$1 " && $$(KERL) delete installation $1 || true
- $$(verbose) $$(KERL) list builds | grep -q "^git,$1-native$$$$" && $$(KERL) delete build $1-native || true
- $$(verbose) $$(KERL) list installations | grep -q "^$1-native " && $$(KERL) delete installation $1-native || true
- $$(verbose) $$(KERL) list builds | grep -q "^git,$1-erllvm$$$$" && $$(KERL) delete build $1-erllvm || true
- $$(verbose) $$(KERL) list installations | grep -q "^$1-erllvm " && $$(KERL) delete installation $1-erllvm || true
+ci-auto-cleanup-$1: $(KERL)
+ $(verbose) $(KERL) list builds | grep -q "^git,$1$$$$" && $(KERL) delete build $1 || true
+ $(verbose) $(KERL) list installations | grep -q "^$1 " && $(KERL) delete installation $1 || true
+ $(verbose) $(KERL) list builds | grep -q "^git,$1-native$$$$" && $(KERL) delete build $1-native || true
+ $(verbose) $(KERL) list installations | grep -q "^$1-native " && $(KERL) delete installation $1-native || true
+ $(verbose) $(KERL) list builds | grep -q "^git,$1-erllvm$$$$" && $(KERL) delete build $1-erllvm || true
+ $(verbose) $(KERL) list installations | grep -q "^$1-erllvm " && $(KERL) delete installation $1-erllvm || true
endef
$(foreach t,$(OTP-DROPPED),$(eval $(call ci_auto_cleanup_target,$t)))