From bf18e534a96079ce46b34a2e2afd7d8d23aef915 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20G=2E=20Aragoneses?= Date: Fri, 10 Jul 2015 22:36:34 +0200 Subject: [PATCH] build: add -f flag to `rm` in clean target This way, running `make clean` twice would not generate an error anymore. --- sources/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/Makefile.am b/sources/Makefile.am index f08c08fa03..b484f492a3 100644 --- a/sources/Makefile.am +++ b/sources/Makefile.am @@ -90,4 +90,4 @@ uninstall-local: echo "$(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS)"; \ $(GACUTIL) /u $(ASSEMBLY_NAME) $(GACUTIL_FLAGS) || exit 1; clean-local: - rm -r generated/* + rm -rf generated/*