From 7f7ca91a0489277ddff259a3370a3d9bb5e1b27f Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Mon, 17 Oct 2016 06:47:22 +0200 Subject: 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 --- doc/manuals/Makefile | 6 ++++-- 1 file 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 \ -- cgit v1.2.3