Changeset 39223 in vbox
- Timestamp:
- Nov 8, 2011 8:04:58 AM (13 years ago)
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 9 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r38466 r39223 315 315 $(VBOX_LNX_INST_OUT_DIR)/vboxweb-service.sh \ 316 316 $(VBOX_LNX_INST_OUT_DIR)/install.sh \ 317 $(VBOX_PATH_LNX_INST_SRC)/installer- utils.sh \317 $(VBOX_PATH_LNX_INST_SRC)/installer-common.sh \ 318 318 $(VBOX_PATH_LNX_INST_SRC)/vboxdrv-pardus.py \ 319 319 $(VBOX_PATH_LNX_INST_SRC)/uninstall.sh … … 359 359 $< 360 360 361 $(VBOX_LNX_INST_OUT_DIR)/install.sh: $(VBOX_PATH_LNX_INST_SRC)/install.sh $(VBOX_PATH_LNX_INST_SRC)/installer- utils.sh $(VBOX_VERSION_STAMP) $(VBOX_SVN_REV_KMK).ts | $$(dir $$@)361 $(VBOX_LNX_INST_OUT_DIR)/install.sh: $(VBOX_PATH_LNX_INST_SRC)/install.sh $(VBOX_PATH_LNX_INST_SRC)/installer-common.sh $(VBOX_VERSION_STAMP) $(VBOX_SVN_REV_KMK).ts | $$(dir $$@) 362 362 $(QUIET)$(SED) \ 363 363 -e "s;_VERSION_;$(VBOX_VERSION_STRING);g" \ … … 367 367 -e "s;_HARDENED_;$(VBOX_WITH_HARDENING);g" \ 368 368 -e "s;_PYTHON_;$(VBOX_WITH_PYTHON);g" \ 369 -e '/#include installer- utils.sh/ {' \370 -e "r $(PATH_ROOT)/src/VBox/Installer/linux/installer- utils.sh" \369 -e '/#include installer-common.sh/ {' \ 370 -e "r $(PATH_ROOT)/src/VBox/Installer/linux/installer-common.sh" \ 371 371 -e 'd' \ 372 372 -e '}' \ -
trunk/src/VBox/Installer/linux/debian/postinst.in
r38423 r39223 18 18 # abort-deconfigure: (our version): error during resolving conflicts 19 19 20 #include installer- utils.sh20 #include installer-common.sh 21 21 22 22 LOG="/var/log/vbox-install.log" -
trunk/src/VBox/Installer/linux/debian/rules
r39214 r39223 343 343 debian/prerm.in > debian/prerm 344 344 sed -e 's|%VER%|$(ver)|g' \ 345 -e '/#include installer- utils.sh/ {' \346 -e "r $(vboxroot)/src/VBox/Installer/linux/installer- utils.sh" \345 -e '/#include installer-common.sh/ {' \ 346 -e "r $(vboxroot)/src/VBox/Installer/linux/installer-common.sh" \ 347 347 -e 'd' \ 348 348 -e '}' \ -
trunk/src/VBox/Installer/linux/install.sh
r39222 r39223 20 20 # Include routines and utilities needed by the installer 21 21 . ./routines.sh 22 #include installer- utils.sh22 #include installer-common.sh 23 23 24 24 LOG="/var/log/vbox-install.log" -
trunk/src/VBox/Installer/linux/rpm/VirtualBox.tmpl.spec
r39222 r39223 219 219 220 220 %post 221 #include installer- utils.sh221 #include installer-common.sh 222 222 223 223 LOG="/var/log/vbox-install.log" -
trunk/src/VBox/Installer/linux/rpm/rules
r39214 r39223 175 175 -e 's|%LIBASOUND%|$(if $(filter lib64,$(rpmlib)),libasound.so.2()(64bit),libasound.so.2)|g' \ 176 176 -e 's|%INITSCRIPTS%|$(if $(filter fedora,$(rpmspec)),initscripts,)|g' \ 177 -e '/#include installer- utils.sh/ {' \178 -e "r $(vboxroot)/src/VBox/Installer/linux/installer- utils.sh" \177 -e '/#include installer-common.sh/ {' \ 178 -e "r $(vboxroot)/src/VBox/Installer/linux/installer-common.sh" \ 179 179 -e 'd' \ 180 180 -e '}' \ -
trunk/src/VBox/Installer/linux/testcase/Makefile.kmk
r38093 r39223 28 28 $$(tstInstallerLinux_0_OUTDIR)/tstInstallerLinux.sh: \ 29 29 $(PATH_SUB_CURRENT)/tstInstallerLinux.sh \ 30 $(PATH_SUB_CURRENT)/../installer- utils.sh \30 $(PATH_SUB_CURRENT)/../installer-common.sh \ 31 31 | $$(dir $$@) 32 32 $(QUIET)$(SED) \ 33 -e '/#include installer- utils.sh/ {' \34 -e "r $(PATH_ROOT)/src/VBox/Installer/linux/installer- utils.sh" \33 -e '/#include installer-common.sh/ {' \ 34 -e "r $(PATH_ROOT)/src/VBox/Installer/linux/installer-common.sh" \ 35 35 -e 'd' \ 36 36 -e '}' \ -
trunk/src/VBox/Installer/linux/testcase/tstInstaller.sh
r37088 r39223 16 16 # 17 17 18 #include installer- utils.sh18 #include installer-common.sh 19 19 20 20 echo Testing udev rule generation -
trunk/src/VBox/Installer/linux/testcase/tstInstallerLinux.sh
r39220 r39223 16 16 # 17 17 18 #include installer- utils.sh18 #include installer-common.sh 19 19 20 20 CERRS=0
Note:
See TracChangeset
for help on using the changeset viewer.