- Timestamp:
- May 24, 2018 1:24:30 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 122776
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r72305 r72322 408 408 -e "s;_ARCH_;$(KBUILD_TARGET_ARCH);g" \ 409 409 -e "s;_HARDENED_;$(VBOX_WITH_HARDENING);g" \ 410 -e "s;_GUI_WITH_SHARED_LIBRARY_;$(VBOX_GUI_WITH_SHARED_LIBRARY);g" \411 410 -e "s;_BUILDTYPE_;$(KBUILD_TYPE);g" \ 412 411 -e "s;_USERNAME_;$(USERNAME);g" \ -
trunk/src/VBox/Installer/linux/install.sh
r72305 r72322 34 34 ARCH="_ARCH_" 35 35 HARDENED="_HARDENED_" 36 GUI_WITH_SHARED_LIBRARY="_GUI_WITH_SHARED_LIBRARY_"37 36 # The "BUILD_" prefixes prevent the variables from being overwritten when we 38 37 # read the configuration from the previous installation. … … 279 278 # and finally make sure the directory is only writable by the user (paranoid). 280 279 if [ -n "$HARDENED" ]; then 281 if [ - n "$GUI_WITH_SHARED_LIBRARY"]; then280 if [ -f $INSTALLATION_DIR/VirtualBoxVM ]; then 282 281 test -e $INSTALLATION_DIR/VirtualBoxVM && chmod 4511 $INSTALLATION_DIR/VirtualBoxVM 283 282 else
Note:
See TracChangeset
for help on using the changeset viewer.