diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-01-17 23:09:37 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-01-17 23:09:37 +0100 |
commit | c92ff87eb8afef815d6f39c78579392f893967d0 (patch) | |
tree | 6cda14b514fd22a99a5813b4a886d740ca6c863d /Makefile | |
parent | Update copyright years (diff) | |
download | devmanual-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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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=$@ $< |