From 2cabf98110c8e58e8bea04149a081ca899be16d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Tue, 15 Dec 2015 11:42:07 +0100 Subject: 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. --- test/core_app.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/core_app.mk') diff --git a/test/core_app.mk b/test/core_app.mk index 0f1af19..a56b07e 100644 --- a/test/core_app.mk +++ b/test/core_app.mk @@ -9,7 +9,7 @@ CORE_APP_CLEAN_TARGETS = $(addprefix clean-,$(CORE_APP_TARGETS)) clean-core-app: $(CORE_APP_CLEAN_TARGETS) $(CORE_APP_CLEAN_TARGETS): - $t rm -rf $(APP_TO_CLEAN)/ + $t rm -rf $(APP_TO_CLEAN) core-app: $(CORE_APP_TARGETS) -- cgit v1.2.3