aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2016-10-17 06:47:22 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2018-11-28 17:00:07 +0100
commit405679260ba81f00844ac4ce09d4ed98c462b2a7 (patch)
tree85acb086ab9920ac6d4b2a85cedc3b52bbe6b6e1
parent68628df4b99e0b4f1d9f3d083ea5e9f7a9834252 (diff)
fix 'make clean': shell glob, ignore failure
Unfortunately a glob like osmo-x__*.{svg,png} doesn't work, so have the suffixes in separate globs. Add dashes to indicate that failure should be ignored. Change-Id: I6bc4d9ea72b43a573acbc860c23397f748de2c7b
-rw-r--r--doc/manuals/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/manuals/Makefile b/doc/manuals/Makefile
index e68b9b0b2..99cd31766 100644
--- a/doc/manuals/Makefile
+++ b/doc/manuals/Makefile
@@ -22,8 +22,10 @@ include $(TOPDIR)/build/Makefile.inc
osmonitb-usermanual.pdf: chapters/*.adoc
clean:
- rm -rf $(cleanfiles)
- rm -rf osmonitb-usermanual__*.{svg,png,check}
+ -rm -rf $(cleanfiles)
+ -rm osmonitb-usermanual__*.svg
+ -rm osmonitb-usermanual__*.png
+ -rm osmonitb-usermanual.check
gen-nitb-vty-docbook: FORCE
$(call command,xsltproc -o generated/combined1.xml \