diff options
author | Tom Rini <trini@konsulko.com> | 2018-07-25 11:38:17 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-26 07:12:31 -0400 |
commit | 08fcdd332f3d6bc7842e21a97c80789d9233e147 (patch) | |
tree | 50d7b71881df4adb0c03e0814640d6f831a5a5f1 /Makefile | |
parent | 73a555d12aaa10a7d84f1d863d52ed5735ea4fdc (diff) | |
download | u-boot-08fcdd332f3d6bc7842e21a97c80789d9233e147.tar.gz |
Makefile: Fix 'clean' target
Now that we have removed the DocBook files we need to not try and clean
that directory.
Reported-by: ericywl <midnight2903@gmail.com>
Reported-by: Jagan Teki <jagan@amarulasolutions.com>
Fixes: 78a88f7930be ("doc: Replace DocBook with sphinx-based docs")
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1603,7 +1603,7 @@ clean: rm-files := $(CLEAN_FILES) clean-dirs := $(foreach f,$(u-boot-alldirs),$(if $(wildcard $(srctree)/$f/Makefile),$f)) -clean-dirs := $(addprefix _clean_, $(clean-dirs) doc/DocBook) +clean-dirs := $(addprefix _clean_, $(clean-dirs)) PHONY += $(clean-dirs) clean archclean $(clean-dirs): @@ -1685,7 +1685,7 @@ help: @echo ' coccicheck - Execute static code analysis with Coccinelle' @echo '' @echo 'Documentation targets:' - @$(MAKE) -f $(srctree)/doc/DocBook/Makefile dochelp + @$(MAKE) -f $(srctree)/Documentation/Makefile dochelp @echo '' @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' @echo ' make V=2 [targets] 2 => give reason for rebuild of target' |