Changeset 16713 in vbox for trunk/src/VBox/Installer/solaris
- Timestamp:
- Feb 12, 2009 4:06:09 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/solaris/makepackage.sh
r15937 r16713 88 88 } 89 89 90 symlink_fixup() 91 { 92 "$VBOX_AWK" 'NF == 3 && $1=="s" && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1" 93 mv -f "tmp-$1" "$1" 94 } 95 96 90 97 # prepare file list 91 98 cd "$VBOX_INSTALLED_DIR" … … 112 119 if test -f $VBOX_INSTALLED_DIR/amd64/VBoxHeadless || test -f $VBOX_INSTALLED_DIR/i386/VBoxHeadless; then 113 120 ln -f ./VBoxISAExec $VBOX_INSTALLED_DIR/VBoxHeadless 114 ln -f ./VBoxISAExec$VBOX_INSTALLED_DIR/VBoxVRDP121 ln -fs ./VBoxHeadless $VBOX_INSTALLED_DIR/VBoxVRDP 115 122 fi 116 123 … … 121 128 filelist_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3"="$3' 122 129 hardlink_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3' 130 symlink_fixup prototype '$2 == "none"' '$3 = "opt/VirtualBox/"$3' 123 131 124 132 # install the kernel modules to the right place.
Note:
See TracChangeset
for help on using the changeset viewer.