We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d01c03 commit 4a04381Copy full SHA for 4a04381
libexec/build-libv8
@@ -17,12 +17,6 @@ BUILDTYPE="${BUILDTYPE:-Release}"
17
18
cd "${src}/node-v${version}"
19
20
-if command -v python3 >/dev/null 2>&1; then
21
- PYTHON="${PYTHON:-python3}"
22
-else
23
- PYTHON="${PYTHON:-python2}"
24
-fi
25
-
26
configure_flags='--openssl-no-asm --without-npm --shared --with-intl=full-icu'
27
eval "$("${libexec}/platform")"
28
@@ -33,7 +27,7 @@ ${CC} -v
33
${CXX} -v
34
35
29
# shellcheck disable=SC2086
36
-"${PYTHON}" configure ${configure_flags}
30
+./configure ${configure_flags}
37
31
38
32
make BUILDTYPE="${BUILDTYPE}" config.gypi
39
make BUILDTYPE="${BUILDTYPE}" "out/Makefile"
0 commit comments