Martin Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/46287 )
Change subject: Makefile: Remove CONFIG_MAINBOARD_PART_NUMBER from doxyplatform ......................................................................
Makefile: Remove CONFIG_MAINBOARD_PART_NUMBER from doxyplatform
The CONFIG_MAINBOARD_PART_NUMBER string can have characters in it that don't work in the doxyplatform make script under sh, so remove it and just use the CONFIG_MAINBOARD_DIR value instead.
The spaces in the "QEMU x86 i440fx/piix4" platform are one example of this.
Signed-off-by: Martin Roth martin@coreboot.org Change-Id: I10bc6a8a245a34e89c859ff46835bde35aaa4286 --- M Makefile 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/46287/1
diff --git a/Makefile b/Makefile index 2705c66..4f7f45d 100644 --- a/Makefile +++ b/Makefile @@ -440,10 +440,10 @@ doxyplatform doxygen_platform: $(obj)/project_filelist.txt echo echo "Building doxygen documentation for $(CONFIG_MAINBOARD_PART_NUMBER)" - export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_VENDOR)/$(CONFIG_MAINBOARD_PART_NUMBER)"; \ + export DOXYGEN_OUTPUT_DIR="$(DOXYGEN_OUTPUT_DIR)/$(CONFIG_MAINBOARD_DIR)"; \ mkdir -p "$$DOXYGEN_OUTPUT_DIR"; \ export DOXYFILES="$$(cat $(obj)/project_filelist.txt | grep -v '.ld$$' | sed 's/.aml/.dsl/' | tr '\n' ' ')"; \ - export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) ($(CONFIG_MAINBOARD_PART_NUMBER)) version $(KERNELVERSION)"; \ + export DOXYGEN_PLATFORM="$(CONFIG_MAINBOARD_DIR) version $(KERNELVERSION)"; \ $(DOXYGEN) Documentation/doxygen/Doxyfile.coreboot_platform
doxyclean: doxygen-clean