Changeset 103062 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Jan 25, 2024 2:09:50 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/darwin/VirtualBox/postflight
r103028 r103062 64 64 "$PYTHON_BIN" -c "from distutils.core import setup" > /dev/null 2>&1 65 65 if test "$?" -ne 0; then 66 echo 1>&2 " Python $PYTHON_VERdoes not have package 'distutils', checking for 'setuptools'..."66 echo 1>&2 "$PYTHON_BIN does not have package 'distutils', checking for 'setuptools'..." 67 67 # Since Python 3.12 there are no distutils anymore. See PEP632. 68 68 "$PYTHON_BIN" -c "from setuptools import setup" > /dev/null 2>&1 69 69 if test "$?" -ne 0; then 70 echo 1>&2 " Python $PYTHON_VERalso does not have package 'setuptools'. Skipping installation."70 echo 1>&2 "$PYTHON_BIN also does not have package 'setuptools'. Skipping installation." 71 71 return 0 72 72 fi … … 88 88 fi 89 89 done 90 else 91 echo 1>&2 "vboxapisetup.py not found, skipping Python bindings installation." 90 92 fi 91 93
Note:
See TracChangeset
for help on using the changeset viewer.