Changeset 43938 in vbox
- Timestamp:
- Nov 22, 2012 1:50:07 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/vboxconfig.sh
r43800 r43938 5 5 # VirtualBox Configuration Script, Solaris host. 6 6 # 7 # Copyright (C) 2009-201 0Oracle Corporation7 # Copyright (C) 2009-2012 Oracle Corporation 8 8 # 9 9 # This file is part of VirtualBox Open Source Edition (OSE), as … … 41 41 BIN_SVCADM=/usr/sbin/svcadm 42 42 BIN_SVCCFG=/usr/sbin/svccfg 43 BIN_SVCS=/usr/bin/svcs 43 BIN_SVCS=/usr/bin/svcs 44 44 BIN_IFCONFIG=/sbin/ifconfig 45 45 BIN_SVCS=/usr/bin/svcs … … 775 775 pythondesc=$2 776 776 if test -x "$pythonbin"; then 777 # check if python has working distutils 778 $pythonbin -c "from distutils.core import setup" > /dev/null 2>&1 779 if test "$?" -ne 0; then 780 subprint "Skipped: $pythondesc install is unusable" 781 return 0 782 fi 783 777 784 VBOX_INSTALL_PATH="$DIR_VBOXBASE" 778 785 export VBOX_INSTALL_PATH … … 1042 1049 1043 1050 if test $recreatelink -eq 1; then 1044 # Check after removing our settings if /etc/netmasks is identifcal to /etc/inet/netmasks 1051 # Check after removing our settings if /etc/netmasks is identifcal to /etc/inet/netmasks 1045 1052 anydiff=`diff $nmaskbackupfile "$PKG_INSTALL_ROOT/etc/inet/netmasks"` 1046 1053 if test ! -z "$anydiff"; then … … 1048 1055 recreatelink=2 1049 1056 fi 1050 fi 1057 fi 1051 1058 1052 1059 echo "#VirtualBox_SectionStart" >> $nmaskbackupfile … … 1124 1131 fi 1125 1132 PYTHONBIN=`which python2.5 2>/dev/null` 1126 install_python_bindings "$PYTHONBIN" 1133 install_python_bindings "$PYTHONBIN" "Python 2.5" 1127 1134 if test "$?" -eq 0; then 1128 1135 INSTALLEDIT=0 … … 1150 1157 1151 1158 update_boot_archive 1152 1159 1153 1160 return 0 1154 1161 else … … 1164 1171 { 1165 1172 fatal=$1 1166 1173 1167 1174 cleanup_install "$fatal" 1168 1175
Note:
See TracChangeset
for help on using the changeset viewer.