From 4874bdc1206d1911990934d97fad29faef223605 Mon Sep 17 00:00:00 2001 From: Fredrik Larson Date: Mon, 25 Aug 2014 02:49:00 +1000 Subject: [PATCH] Mac path fix for Python --- ground/openpilotgcs/src/python.pri | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ground/openpilotgcs/src/python.pri b/ground/openpilotgcs/src/python.pri index a101bfb75..97c66d5cc 100644 --- a/ground/openpilotgcs/src/python.pri +++ b/ground/openpilotgcs/src/python.pri @@ -15,7 +15,8 @@ OPENPILOT_TOOLS_DIR = $$(OPENPILOT_TOOLS_DIR) PYTHON = \"$$ROOT_DIR/tools/$$PYTHON_DIR/python\" } else { # not found, hope it's in the path... - PYTHON = \"$$(PYTHON)\" + !macx: { PYTHON = \"$$(PYTHON)\" } + macx: { PYTHON = \"python\"} } }