build: add -f flag to `rm` in clean target
authorAndrés G. Aragoneses <knocte@gmail.com>
Fri, 10 Jul 2015 20:36:34 +0000 (22:36 +0200)
committerStephan Sundermann <ssundermann@gnome.org>
Sat, 11 Jul 2015 14:00:22 +0000 (16:00 +0200)
This way, running `make clean` twice would not
generate an error anymore.

sources/Makefile.am

index f08c08f..b484f49 100644 (file)
@@ -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/*