Changeset 77077 in vbox for trunk/src/VBox
- Timestamp:
- Jan 31, 2019 2:38:49 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128530
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/installer/install.sh.in
r76553 r77077 352 352 INSTALL_DIR="" 353 353 uninstalled=0 354 test -r "$CONFIG_DIR/$CONFIG" && 355 eval `grep ^INSTALL_DIR= "$CONFIG_DIR/$CONFIG"` 2>/dev/null && 356 eval `grep ^UNINSTALLER= "$CONFIG_DIR/$CONFIG"` 2>/dev/null 357 if test -n "$INSTALL_DIR" -a -x "$INSTALL_DIR/$UNINSTALLER"; then 354 test -r "$CONFIG_DIR/$CONFIG" && . "$CONFIG_DIR/$CONFIG" 355 if test -n "$INSTALL_DIR" && test -n "$UNINSTALLER" && 356 test -x "$INSTALL_DIR/$UNINSTALLER"; then 358 357 "$INSTALL_DIR/$UNINSTALLER" $NO_CLEANUP 1>&2 || 359 358 abort "Failed to remove existing installation. Aborting..."
Note:
See TracChangeset
for help on using the changeset viewer.