Favour Python 2 as it's more widely tested.

pull/3/head
Dave Page 2016-06-17 11:31:15 +01:00
parent 359b1d0176
commit e9dc1496e2
1 changed files with 4 additions and 4 deletions

View File

@ -49,12 +49,12 @@ else {
message(Building for Linux/Mac...)
# Find and configure Python
# Python 3?
PYTHON_CONFIG = $$system(which python3-config)
# Python 2?
PYTHON_CONFIG = $$system(which python-config)
# Maybe Python 2?
# Maybe Python 3?
isEmpty(PYTHON_CONFIG) {
PYTHON_CONFIG = $$system(which python-config)
PYTHON_CONFIG = $$system(which python3-config)
}
# Argh!