aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2021-01-17 23:09:37 +0100
committerUlrich Müller <ulm@gentoo.org>2021-01-17 23:09:37 +0100
commitc92ff87eb8afef815d6f39c78579392f893967d0 (patch)
tree6cda14b514fd22a99a5813b4a886d740ca6c863d
parentUpdate copyright years (diff)
downloaddevmanual-c92ff87eb8afef815d6f39c78579392f893967d0.tar.gz
devmanual-c92ff87eb8afef815d6f39c78579392f893967d0.tar.bz2
devmanual-c92ff87eb8afef815d6f39c78579392f893967d0.zip
Makefile: Call build_search_documents.py with python3 explicitly
Bug: https://bugs.gentoo.org/765826 Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index be1224f..13f2bb9 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,7 @@ build: $(HTMLS) $(IMAGES)
# document in devmanual gets a unique ID, which is used to
# quickly tie search matches to the corresponding documents.
documents.js: bin/build_search_documents.py $(XMLS)
- @./bin/build_search_documents.py $(XMLS) > $@ && echo "$@ built"
+ @python3 bin/build_search_documents.py $(XMLS) > $@ && echo "$@ built"
%.png : %.svg
rsvg-convert --output=$@ $<