diff options
author | Julien Rioux <jrioux@physics.utoronto.ca> | 2013-08-12 11:31:11 -0400 |
---|---|---|
committer | Julien Rioux <jrioux@physics.utoronto.ca> | 2013-08-23 18:59:37 -0400 |
commit | 493e7709b49db8325fff86aff0c266d69d66813a (patch) | |
tree | f3fead4933525723278d1e4f2a722b7731c77188 /make | |
parent | 12c04e284891433f7bdba44e53e7943386284b40 (diff) |
Use the python found by ./configure to build the website.
This fixes issue 3494:
make website fails on platforms where python3 is the default.
Diffstat (limited to 'make')
-rw-r--r-- | make/website.make | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/make/website.make b/make/website.make index bf3b2ad865..3e8df628d5 100644 --- a/make/website.make +++ b/make/website.make @@ -68,11 +68,11 @@ EXTRACT_TEXI_FILENAMES=$(PYTHON) $(script-dir)/extract_texi_filenames.py $(quiet -I $(dir $<) \ -I $(OUT) \ -o $(OUT) -CREATE_VERSION=python $(script-dir)/create-version-itexi.py -CREATE_WEBLINKS=python $(script-dir)/create-weblinks-itexi.py -MASS_LINK=python $(script-dir)/mass-link.py -WEB_POST=python $(script-dir)/website_post.py -WEB_BIBS=python $(script-dir)/bib2texi.py +CREATE_VERSION=$(PYTHON) $(script-dir)/create-version-itexi.py +CREATE_WEBLINKS=$(PYTHON) $(script-dir)/create-weblinks-itexi.py +MASS_LINK=$(PYTHON) $(script-dir)/mass-link.py +WEB_POST=$(PYTHON) $(script-dir)/website_post.py +WEB_BIBS=$(PYTHON) $(script-dir)/bib2texi.py EXAMPLES=$(LILYPOND_WEB_MEDIA_GIT)/ly-examples PICTURES=$(LILYPOND_WEB_MEDIA_GIT)/pictures |