Changeset 20587 in vbox for trunk/src/VBox/Installer
- Timestamp:
- Jun 15, 2009 11:19:57 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48601
- Location:
- trunk/src/VBox/Installer/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/ipsinstall.sh
r20494 r20587 27 27 idbin=/usr/xpg4/bin/id 28 28 if test ! -f "$idbin"; then 29 found=`which id | grep "no id"`30 if test ! - z"$found"; then29 found=`which id` 30 if test ! -f "$found" || test ! -h "$found"; then 31 31 echo "## Failed to find a suitable user id binary." 32 32 exit 1 -
trunk/src/VBox/Installer/solaris/vboxdrv.sh
r18265 r20587 152 152 idbin=/usr/xpg4/bin/id 153 153 if test ! -f "$idbin"; then 154 found=`which id | grep "no id"`155 if test ! - z"$found"; then154 found=`which id` 155 if test ! -f "$found" || test ! -h "$found"; then 156 156 abort "Failed to find a suitable user id binary! Aborting" 157 157 else
Note:
See TracChangeset
for help on using the changeset viewer.