From 75afcffc2ffdbac1d0a837d8407ae5720dce9631 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 7 Sep 2013 10:22:36 -0700 Subject: [PATCH] Run gyp with CFG_PYTHON which is python < 3 This is required for systems where /usr/bin/python is actually python 3 --- mk/rt.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/rt.mk b/mk/rt.mk index 14aa2884b60..5911ae89fdb 100644 --- a/mk/rt.mk +++ b/mk/rt.mk @@ -178,7 +178,7 @@ export PYTHONPATH := $(PYTHONPATH):$$(S)src/gyp/pylib $$(LIBUV_MAKEFILE_$(1)_$(2)): (cd $(S)src/libuv/ && \ - ./gyp_uv -f make -Dtarget_arch=$$(LIBUV_ARCH_$(1)) -D ninja \ + $$(CFG_PYTHON) ./gyp_uv -f make -Dtarget_arch=$$(LIBUV_ARCH_$(1)) -D ninja \ -Goutput_dir=$$(@D) --generator-output $$(@D)) # XXX: Shouldn't need platform-specific conditions here