summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Dethrow <log@lindenlab.com>2012-12-06 21:59:54 +0000
committerLogan Dethrow <log@lindenlab.com>2012-12-06 21:59:54 +0000
commit97adf6422ac61148a3334d67b4c59a5f5437af2c (patch)
treeaee3f4a9f95a39a8d7020e856d8e6933f53d9d19
parent1d5b98929b176f3eeda7274bf8f21b69d551a2cd (diff)
On Linux now use the default system python instead of defaulting to python2.5. This was a holdover from when on linden systems 2.5 was newer than the default, instead of older.
-rw-r--r--indra/cmake/Python.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/Python.cmake b/indra/cmake/Python.cmake
index 748c8c2bec..a81c9307fc 100644
--- a/indra/cmake/Python.cmake
+++ b/indra/cmake/Python.cmake
@@ -23,7 +23,7 @@ if (WINDOWS)
elseif (EXISTS /etc/debian_version)
# On Debian and Ubuntu, avoid Python 2.4 if possible.
- find_program(PYTHON_EXECUTABLE python2.5 python2.3 python PATHS /usr/bin)
+ find_program(PYTHON_EXECUTABLE python PATHS /usr/bin)
if (PYTHON_EXECUTABLE)
set(PYTHONINTERP_FOUND ON)