Skip to content

Commit d83d46a

Browse files
committed
Invoke scripts with
1 parent e9fd689 commit d83d46a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/mkenv.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RM = rm
5656
RSYNC = rsync
5757
SED = sed
5858
# Linux has 'nproc', macOS has 'sysctl -n hw.logicalcpu', this is cross-platform
59-
NPROC = $(PYTHON) -c 'import multiprocessing as mp; print(mp.cpu_count())'
59+
NPROC = $(PYTHON3) -c 'import multiprocessing as mp; print(mp.cpu_count())'
6060

6161
AS = $(CROSS_COMPILE)as
6262
CC = $(CROSS_COMPILE)gcc
@@ -72,7 +72,7 @@ CXX += -m32
7272
LD += -m32
7373
endif
7474

75-
MAKE_FROZEN = $(PYTHON) $(TOP)/tools/make-frozen.py
75+
MAKE_FROZEN = $(PYTHON3) $(TOP)/tools/make-frozen.py
7676
MPY_CROSS = $(TOP)/mpy-cross/mpy-cross
7777
MPY_TOOL = $(PYTHON3) $(TOP)/tools/mpy-tool.py
7878
PREPROCESS_FROZEN_MODULES = PYTHONPATH=$(TOP)/tools/python-semver $(TOP)/tools/preprocess_frozen_modules.py

0 commit comments

Comments
 (0)