diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2016-04-15 21:30:36 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2016-04-15 21:30:36 +0200 |
commit | a868b88d147f14c2135beb53b82babbc4c46635f (patch) | |
tree | b1118be57585b830229771a14f289a4ee00e8d43 /docs/en | |
parent | Email::MIME::Attachment::Stripper is no longer used, see bug 437076 (diff) | |
download | bugzilla-a868b88d147f14c2135beb53b82babbc4c46635f.tar.gz bugzilla-a868b88d147f14c2135beb53b82babbc4c46635f.tar.bz2 bugzilla-a868b88d147f14c2135beb53b82babbc4c46635f.zip |
Bug 1232171 - 'make clean' shouldn't delete rst/, images/ and Makefile, only generated files
r=gerv
Diffstat (limited to 'docs/en')
-rw-r--r-- | docs/en/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/en/Makefile b/docs/en/Makefile index fc9af11e0..8c3621f31 100644 --- a/docs/en/Makefile +++ b/docs/en/Makefile @@ -39,7 +39,7 @@ help: @echo " doctest to run all doctests embedded in the documentation (if enabled)" clean: - -rm -rf $(BUILDDIR)/* + find $(BUILDDIR) -maxdepth 1 -type d -not -name rst -not -name images -not -name . -exec rm -rf {} \; html: $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html |