summaryrefslogtreecommitdiffstats
path: root/Documentation/Makefile.sphinx
diff options
context:
space:
mode:
authorTristan Corrick <tristan@corrick.kiwi>2018-08-01 23:50:02 +1200
committerPatrick Georgi <pgeorgi@google.com>2018-08-13 15:37:32 +0000
commit870f69e2214d98a29e623a48953f305326e5870a (patch)
treeb38494e7f94fe0fafcbb01c89abf8f26e2792a51 /Documentation/Makefile.sphinx
parent2527648d8c258581bc1c32576d248f15a13b48dd (diff)
downloadcoreboot-870f69e2214d98a29e623a48953f305326e5870a.tar.gz
coreboot-870f69e2214d98a29e623a48953f305326e5870a.tar.bz2
coreboot-870f69e2214d98a29e623a48953f305326e5870a.zip
Documentation/Makefile.sphinx: Be cautious when running `rm -rf`
If BUILDDIR were an empty string, running `make clean` would result in running `rm -rf /*`. Omitting the trailing /* prevents this. With a valid BUILDDIR, the behaviour of `make clean` changes slightly in that BUILDDIR itself is removed. However, this is probably more in line with what one would expect from `make clean`. Change-Id: I51b52bb6e7fe73a07fed6291a4f1cc253f2bf319 Signed-off-by: Tristan Corrick <tristan@corrick.kiwi> Reviewed-on: https://review.coreboot.org/27775 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Stefan Tauner <stefan.tauner@gmx.at> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Documentation/Makefile.sphinx')
-rw-r--r--Documentation/Makefile.sphinx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile.sphinx b/Documentation/Makefile.sphinx
index 0ecebbe11e3e..2357f186cf1b 100644
--- a/Documentation/Makefile.sphinx
+++ b/Documentation/Makefile.sphinx
@@ -46,7 +46,7 @@ help:
.PHONY: clean
clean:
- rm -rf $(BUILDDIR)/*
+ rm -rf $(BUILDDIR)
.PHONY: html
html: