diff options
author | ng0 <ng0@n0.is> | 2019-02-04 11:46:10 +0000 |
---|---|---|
committer | ng0 <ng0@n0.is> | 2019-02-04 11:46:10 +0000 |
commit | 31afd42db4a40882e6f74e489970ccb8048c6429 (patch) | |
tree | d20229c40fe3d879fcf2f2eb9c523cc75a250cf7 | |
parent | 47cb34aff5dedbd46159dcf01df11e51b1d8cf48 (diff) |
comment why we have variables for python etc
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -3,6 +3,12 @@ # All: build HTML pages in all languages and compile the # TypeScript logic in web-common. +# Hardly anyone seems to read README files anymore, so keep this note here: +# Don't remove the variables for python etc. They exist +# because one system sticks with PEPs, and others opt +# for installing every version side-by-side, +# Same goes for babel. + include config.mk all: locale template @@ -54,6 +60,6 @@ docker-all: docker build -t gnunet-www-builder . # Importing via the shell like this is hacky, # but after trying lots of other ways, this works most reliably... - python3 -c 'import i18nfix' + $(PYTHON) -c 'import i18nfix' docker run --rm -v $$(pwd):/tmp/ --user $$(id -u):$$(id -g) gnunet-www-builder |