Skip to content

Commit 45b83c9

Browse files
Fix Makefile themes check
1 parent a9e8d4c commit 45b83c9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/test/run-make-fulldeps/rustdoc-themes/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ OUTPUT_DIR := "$(TMPDIR)/rustdoc-themes"
77
all:
88
cp $(S)/src/librustdoc/html/static/themes/light.css $(TMPDIR)/test.css
99
$(RUSTDOC) -o $(OUTPUT_DIR) foo.rs --theme $(TMPDIR)/test.css
10+
$(HTMLDOCCK) $(OUTPUT_DIR) foo.rs

src/test/run-make-fulldeps/tools.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUSTC := $(RUSTC) -Clinker=$(RUSTC_LINKER)
1515
RUSTDOC := $(RUSTDOC) -Clinker=$(RUSTC_LINKER)
1616
endif
1717
#CC := $(CC) -L $(TMPDIR)
18-
HTMLDOCCK := $(PYTHON) $(S)/src/etc/htmldocck.py
18+
HTMLDOCCK := '$(PYTHON)' '$(S)/src/etc/htmldocck.py'
1919
CGREP := "$(S)/src/etc/cat-and-grep.sh"
2020

2121
# This is the name of the binary we will generate and run; use this

0 commit comments

Comments
 (0)