aboutsummaryrefslogtreecommitdiffstats
path: root/test/core_compat.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-12-15 11:42:07 +0100
committerLoïc Hoguin <[email protected]>2015-12-15 11:42:07 +0100
commit2cabf98110c8e58e8bea04149a081ca899be16d0 (patch)
treede2bbf10e12d37ae0a605e9ef98a023f80189517 /test/core_compat.mk
parent2819f56756353432ff7629c4731dc6a080f8b55e (diff)
downloaderlang.mk-2cabf98110c8e58e8bea04149a081ca899be16d0.tar.gz
erlang.mk-2cabf98110c8e58e8bea04149a081ca899be16d0.tar.bz2
erlang.mk-2cabf98110c8e58e8bea04149a081ca899be16d0.zip
Make some rm -rf commands safer
This way if for some unknown reason $(APP_TO_CLEAN) isn't defined, we don't delete the entire world.
Diffstat (limited to 'test/core_compat.mk')
-rw-r--r--test/core_compat.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core_compat.mk b/test/core_compat.mk
index 06d5211..9ded253 100644
--- a/test/core_compat.mk
+++ b/test/core_compat.mk
@@ -13,7 +13,7 @@ REBAR_BINARY = https://github.com/rebar/rebar/releases/download/2.6.0/rebar
clean-core-compat: $(CORE_COMPAT_CLEAN_TARGETS)
$(CORE_COMPAT_CLEAN_TARGETS):
- $t rm -rf $(APP_TO_CLEAN)/
+ $t rm -rf $(APP_TO_CLEAN)
core-compat: $(CORE_COMPAT_TARGETS)