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-27 17:12:40 +0100
commit7f7ca91a0489277ddff259a3370a3d9bb5e1b27f (patch)
tree04ec2d8c8577befd996e73ce0eb4fe35752025ff
parentd0f60df769ed3c2ca8220e07c693d2e7f7891e6c (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 9fc6f266c..284ac3bba 100644
--- a/doc/manuals/Makefile
+++ b/doc/manuals/Makefile
@@ -23,8 +23,10 @@ include $(TOPDIR)/build/Makefile.inc
osmobsc-usermanual.pdf: chapters/*.adoc
clean:
- rm -rf $(cleanfiles)
- rm -rf osmobsc-usermanual__*.{svg,png,check}
+ -rm -rf $(cleanfiles)
+ -rm osmobsc-usermanual__*.png
+ -rm osmobsc-usermanual__*.svg
+ -rm osmobsc-usermanual*.check
gen-bsc-vty-docbook: FORCE
$(call command,xsltproc -o generated/combined1.xml \