File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
graalpython/com.oracle.graal.python.pegparser.generator Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ QUIETLY$(MX_VERBOSE) = @
2
2
3
3
PARSER_PATH ?= ../com.oracle.graal.python.pegparser/src/com/oracle/graal/python/pegparser
4
4
ifdef MX_PYTHON
5
- PYTHON ?= ${MX_PYTHON}
5
+ PYTHON_EXE ?= ${MX_PYTHON}
6
6
else ifdef MX_PYTHON_VERSION
7
- PYTHON ?= python${MX_PYTHON_VERSION}
7
+ PYTHON_EXE ?= python${MX_PYTHON_VERSION}
8
8
else
9
- PYTHON ?= python3
9
+ PYTHON_EXE ?= python3
10
10
endif
11
11
12
12
TARGET =${PARSER_PATH}/Parser.java
@@ -22,7 +22,7 @@ STAMP=${GRAMMAR}.stamp
22
22
default : ${STAMP}
23
23
24
24
${STAMP} : ${GRAMMAR} ${TOKENS} ${PEGEN_FILES} main_parser_gen.py
25
- $(QUIETLY ) ${PYTHON } main_parser_gen.py ${GRAMMAR} ${TOKENS} ${TARGET}
25
+ $(QUIETLY ) ${PYTHON_EXE } main_parser_gen.py ${GRAMMAR} ${TOKENS} ${TARGET}
26
26
$(QUIETLY ) touch $@
27
27
28
28
clean :
You can’t perform that action at this time.
0 commit comments