Changeset 44918 in vbox for trunk/src/VBox/Installer/linux
- Timestamp:
- Mar 5, 2013 10:16:26 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/run-inst.sh
r44917 r44918 224 224 225 225 --with-*) 226 MODULE_CUR= $(expr "$ARG" : '--with-\(.*\)')226 MODULE_CUR=`expr "$ARG" : '--with-\(.*\)'` 227 227 # Check if corresponding module in installer/module-$1 exists. 228 228 # Note: Module names may not contain spaces or other funny things. … … 344 344 345 345 info "Installing additional modules ..." 346 for CUR_MODULE in $(find "$INSTALLATION_MODULES_DIR")346 for CUR_MODULE in `find "$INSTALLATION_MODULES_DIR"` 347 347 do 348 348 echo "$CUR_MODULE" >> "$CONFIG_DIR/$CONFIG_FILES" … … 386 386 for CUR_MODULE in ${INSTALLATION_MODULES_LIST} 387 387 do 388 echo " $(mod_${CUR_MODULE}_config_save)" >> "$CONFIG_DIR/$CONFIG"388 echo "`mod_${CUR_MODULE}_config_save`" >> "$CONFIG_DIR/$CONFIG" 389 389 done 390 390 … … 442 442 # value below to not override values which are set to a default 443 443 # value in the modules itself. 444 for CUR_MODULE in \$(find "$INSTALLATION_MODULES_DIR" -name "module-*")444 for CUR_MODULE in `find "$INSTALLATION_MODULES_DIR" -name "module-*"` 445 445 do 446 446 . "\$CUR_MODULE"
Note:
See TracChangeset
for help on using the changeset viewer.