Changeset 22003 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Aug 5, 2009 6:04:47 PM (15 years ago)
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/ipsinstall.sh
r21600 r22003 179 179 rc3=0 180 180 if test -f "/opt/VirtualBox/sdk/installer/vboxapisetup.py" || test -h "/opt/VirtualBox/sdk/installer/vboxapisetup.py"; then 181 PYTHONBIN=`which python `181 PYTHONBIN=`which python 2>/dev/null` 182 182 if test -f "$PYTHONBIN" || test -h "$PYTHONBIN"; then 183 183 echo "Installing Python bindings..." 184 184 185 185 INSTALLEDIT=1 186 PYTHONBIN=`which python2.4 `186 PYTHONBIN=`which python2.4 2>/dev/null` 187 187 install_python_bindings "$PYTHONBIN" 188 188 if test "$?" -eq 0; then 189 189 INSTALLEDIT=0 190 190 fi 191 PYTHONBIN=`which python2.5 `191 PYTHONBIN=`which python2.5 2>/dev/null` 192 192 install_python_bindings "$PYTHONBIN" 193 193 if test "$?" -eq 0; then 194 194 INSTALLEDIT=0 195 195 fi 196 PYTHONBIN=`which python2.6 `196 PYTHONBIN=`which python2.6 2>/dev/null` 197 197 install_python_bindings "$PYTHONBIN" 198 198 if test "$?" -eq 0; then -
trunk/src/VBox/Installer/solaris/postinstall.sh
r21822 r22003 131 131 # Install python bindings 132 132 if test -f "/opt/VirtualBox/sdk/installer/vboxapisetup.py" || test -h "/opt/VirtualBox/sdk/installer/vboxapisetup.py"; then 133 PYTHONBIN=`which python `133 PYTHONBIN=`which python 2> /dev/null` 134 134 if test -f "$PYTHONBIN" || test -h "$PYTHONBIN"; then 135 135 echo "Installing Python bindings..." 136 136 137 137 INSTALLEDIT=1 138 PYTHONBIN=`which python2.4 `138 PYTHONBIN=`which python2.4 2>/dev/null` 139 139 install_python_bindings "$PYTHONBIN" 140 140 if test "$?" -eq 0; then 141 141 INSTALLEDIT=0 142 142 fi 143 PYTHONBIN=`which python2.5 `143 PYTHONBIN=`which python2.5 2>/dev/null` 144 144 install_python_bindings "$PYTHONBIN" 145 145 if test "$?" -eq 0; then 146 146 INSTALLEDIT=0 147 147 fi 148 PYTHONBIN=`which python2.6 `148 PYTHONBIN=`which python2.6 2>/dev/null` 149 149 install_python_bindings "$PYTHONBIN" 150 150 if test "$?" -eq 0; then
Note:
See TracChangeset
for help on using the changeset viewer.