Просмотр исходного кода

naiveproxy: fix with python 2.x installed building

coolsnowwolf 3 лет назад
Родитель
Сommit
c13aa0a454
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      naiveproxy/Makefile

+ 1 - 1
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