From d4cb761e51a26a7c5c88188dd5801a060cda423f Mon Sep 17 00:00:00 2001 From: Radek Doulik Date: Fri, 17 Mar 2017 14:50:30 +0100 Subject: [PATCH] [clean] make sure the clean doesn't fail - ... when the file doesn't exists --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2caf68b97..0204d8c46 100644 --- a/Makefile +++ b/Makefile @@ -59,7 +59,7 @@ prepare-external: $(PACKAGES) $(NUNIT_CONSOLE) clean: -$(MSBUILD) $(MSBUILD_FLAGS) /t:Clean -rm -Rf bin/$(CONFIGURATION) bin/Build$(CONFIGURATION) bin/Test$(CONFIGURATION) bin/XAIntegration$(CONFIGURATION) - -rm src/Java.Runtime.Environment/Java.Runtime.Environment.dll.config + -rm -f src/Java.Runtime.Environment/Java.Runtime.Environment.dll.config include build-tools/scripts/mono.mk include build-tools/scripts/jdk.mk