1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-01-30 15:52:12 +01:00

Mac path fix for Python

This commit is contained in:
Fredrik Larson 2014-08-25 02:49:00 +10:00
parent 35a6807e63
commit 4874bdc120

View File

@ -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\"}
}
}