Index: /trunk/src/VBox/Installer/linux/install.sh
===================================================================
--- /trunk/src/VBox/Installer/linux/install.sh	(revision 33033)
+++ /trunk/src/VBox/Installer/linux/install.sh	(revision 33034)
@@ -207,5 +207,5 @@
     # Find previous installation
     if [ ! -r $CONFIG_DIR/$CONFIG ]; then
-        mkdir -p $CONFIG_DIR
+        mkdir -p -m 755 $CONFIG_DIR
         touch $CONFIG_DIR/$CONFIG
     else
@@ -306,5 +306,5 @@
 
     # Verify the archive
-    mkdir -p $INSTALLATION_DIR
+    mkdir -p -m 755 $INSTALLATION_DIR
     bzip2 -d -c VirtualBox.tar.bz2 | tar -tf - > $CONFIG_DIR/$CONFIG_FILES
     RETVAL=$?
Index: /trunk/src/VBox/Installer/linux/run-inst.sh
===================================================================
--- /trunk/src/VBox/Installer/linux/run-inst.sh	(revision 33033)
+++ /trunk/src/VBox/Installer/linux/run-inst.sh	(revision 33034)
@@ -246,7 +246,7 @@
 
 # install the new version
-mkdir -p "$CONFIG_DIR"
+mkdir -p -m 755 "$CONFIG_DIR"
 test ! -d "$INSTALLATION_DIR" && REMOVE_INSTALLATION_DIR=1
-mkdir -p "$INSTALLATION_DIR"
+mkdir -p -m 755 "$INSTALLATION_DIR"
 # Create a list of the files in the archive, skipping any directories which
 # already exist in the filesystem.
