Don't fail on make clean just because the directory does not exist

This commit is contained in:
Pedro Algarvio 2015-04-21 00:44:02 +01:00
parent c965b0a035
commit 95d6887949

View file

@ -64,7 +64,7 @@ help:
clean:
rm -rf $(BUILDDIR)/*
test -d 'locale' && find locale/ -name *.mo -exec rm {} \;
test -d 'locale' && find locale/ -name *.mo -exec rm {} \; || true
html: translations
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html