Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaƫl Zasso <targos@protonmail.com>2021-03-16 09:50:42 +0300
committergengjiawen <technicalcute@gmail.com>2021-04-15 04:14:01 +0300
commitc3a5e15ebec783a929af16913fffd45f6bab02ec (patch)
tree087b614fb0ef339cbb8e71e18613e2a99427e889 /Makefile
parent8e80fc7ff84bb477eb05ddcd59ac492d9fbf5c8d (diff)
build: default PYTHON to python3 in Makefile
So that direct calls to `make` which spawn the configure script do not use Python 2. PR-URL: https://github.com/nodejs/node/pull/37764 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ash Cripps <acripps@redhat.com> Reviewed-By: Richard Lau <rlau@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b988994d286..26746d94f4a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
-include config.mk
BUILDTYPE ?= Release
-PYTHON ?= python
+PYTHON ?= python3
DESTDIR ?=
SIGN ?=
PREFIX ?= /usr/local