aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2010-09-28 21:29:34 -0400
committerW. Trevor King <wking@drexel.edu>2010-09-28 21:29:34 -0400
commite3ec1f6f6d0f8ad5bc3777aa49f96d43aa9ffacc (patch)
treed05dbd1f2c628eacbb34a234ba853257d1d7f02e /doc
parent8c9f876ae69f7bf92686edea320931d875b5c681 (diff)
downloadbugseverywhere-e3ec1f6f6d0f8ad5bc3777aa49f96d43aa9ffacc.tar.gz
Wrap `rm` in the RM variable in doc/Makefile.
This is more consistent with the example set by the root Makefile.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 6d7bbc5..71698a8 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,5 +1,6 @@
# Makefile for Sphinx documentation
#
+RM = /bin/rm
# You can set these variables from the command line.
SPHINXOPTS =
@@ -29,7 +30,7 @@ help:
@echo " libbe to autogenerate files for all libbe modules"
clean:
- -rm -rf $(BUILDDIR) libbe
+ $(RM) -rf $(BUILDDIR) libbe
html: libbe
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html