Changeset 61436 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Jun 3, 2016 12:13:28 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107755
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/routines.sh
r59871 r61436 358 358 359 359 PYTHON=python 360 if [ ! `python -c 'print "test"' 2> /dev/null` = "test" ]; then 361 echo 1>&2 "Python not available, skipping bindings installation." 360 if [ ! `python -c 'import sys 361 if sys.version_info >= (2, 6): 362 print "test"' 2> /dev/null` = "test" ]; then 363 echo 1>&2 "Python 2.6 or later not available, skipping bindings installation." 362 364 return 1 363 365 fi
Note:
See TracChangeset
for help on using the changeset viewer.