From 55a4471fc130bff87ecf4365d7056649e0a9b459 Mon Sep 17 00:00:00 2001 From: coolsnowwolf <31687149+coolsnowwolf@users.noreply.github.com> Date: Sun, 4 Sep 2022 19:31:02 +0800 Subject: [PATCH] naiveproxy: fix with python 2.x installed building --- naiveproxy/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/naiveproxy/Makefile b/naiveproxy/Makefile index fa0d08cbe..2aaf623e4 100644 --- a/naiveproxy/Makefile +++ b/naiveproxy/Makefile @@ -122,7 +122,7 @@ define Build/Configure . ../init_env.sh "$(ARCH)" $(CPU_TYPE) $(CPU_SUBTYPE) "$(TOOLCHAIN_DIR)" ; \ export naive_flags+=" $$$${naive_ccache_flags}" ; \ mkdir -p "out" ; \ - ./gn/out/gn gen "out/Release" --args="$$$${naive_flags}" --script-executable="$(PYTHON)" ; \ + ./gn/out/gn gen "out/Release" --args="$$$${naive_flags}" --script-executable="python3" ; \ popd ; \ ) endef