From 44825d71975aa96a172b0dfab99ea21ac08985e3 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Tue, 12 Feb 2013 00:15:39 +0100 Subject: [PATCH] fix python compilation broken from a recent commit --- tools/build-python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build-python.sh b/tools/build-python.sh index 458fca9..81f34b5 100755 --- a/tools/build-python.sh +++ b/tools/build-python.sh @@ -28,7 +28,7 @@ try cp $KIVYIOSROOT/src/python_files/_scproxy.py Lib/_scproxy.py # echo "Building for native machine ============================================" -if [ -e hostpython ]; then +if [ ! -e hostpython ]; then try ./configure CC="$CCACHE clang -Qunused-arguments -fcolor-diagnostics" LDFLAGS="-lsqlite3" try make python.exe Parser/pgen try mv python.exe hostpython