Merge pull request #22877 from s0undt3ch/hotfix/clean-docs-fix

Don't fail on `make clean` just because the directory does not exist
This commit is contained in:
Justin Findlay 2015-04-20 20:40:47 -06:00
commit 9211e36564

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