Changeset 44092 in vbox
- Timestamp:
- Dec 11, 2012 2:43:49 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 82616
- Location:
- trunk/src/VBox/Installer/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/linux/Makefile.kmk
r44072 r44092 170 170 ExtensionPacks/VNC/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/VBoxVNC.so \ 171 171 ExtensionPacks/VNC/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/VBoxVNCMain.so,) \ 172 VBoxTunctl 172 VBoxTunctl \ 173 helpers/generate_service_file 173 174 174 175 # Do not remove relocation information of these binaries … … 201 202 VBox.sh \ 202 203 VBox.png \ 203 helpers \204 204 scripts 205 205 … … 398 398 $(wildcard $(PATH_STAGE_BIN)/src/*/*) \ 399 399 $(wildcard $(PATH_STAGE_BIN)/src/*/*/*) \ 400 $(wildcard $(PATH_STAGE_BIN)/src/*/*/*/*) 400 $(wildcard $(PATH_STAGE_BIN)/src/*/*/*/*) \ 401 $(wildcard $(PATH_STAGE_BIN)/scripts/*) 401 402 402 403 … … 478 479 archive \ 479 480 archive/components \ 481 archive/helpers \ 480 482 archive/nls \ 481 483 $(if $(VBOX_WITH_QT4_SUN),archive/accessible,) \ … … 524 526 $(VBOX_LNX_DBG_PATH) \ 525 527 $(VBOX_LNX_DBG_PATH)/components \ 528 $(VBOX_LNX_DBG_PATH)/helpers \ 526 529 ,$(VBOX_LNX_INST_OUT_DIR)/archive-dbg/$(d)/) 527 530 -
trunk/src/VBox/Installer/linux/install_service/Makefile.kmk
r44049 r44092 35 35 36 36 INSTALLS.linux += linux-install-service-bin 37 linux-install-service-bin_INST = bin/ helpers/37 linux-install-service-bin_INST = bin/scripts/ 38 38 linux-install-service-bin_MODE = a+rx,u+w 39 39 linux-install-service-bin_SOURCES = \ … … 41 41 42 42 INSTALLS.linux += linux-install-service-nobin 43 linux-install-service-nobin_INST = bin/ helpers/43 linux-install-service-nobin_INST = bin/scripts/ 44 44 linux-install-service-nobin_MODE = a+r,u+w 45 45 linux-install-service-nobin_SOURCES = \ -
trunk/src/VBox/Installer/linux/install_service/install_service.sh
r44087 r44092 80 80 81 81 EOF 82 "${script_folder}/ generate_service_file" --list-options82 "${script_folder}/../helpers/generate_service_file" --list-options 83 83 } 84 84 … … 186 186 test -f "${path}/${SERVICE_NAME}" && update="${UPDATE}" 187 187 if test -n "${INSTALL}"; then 188 "${script_folder}/ generate_service_file" --format shell --command "${COMMAND}" --arguments "${ARGUMENTS}" --description "${DESCRIPTION}" --service-name "${SERVICE_NAME}" < "${script_folder}/init_template.sh" > "${path}/${SERVICE_NAME}"188 "${script_folder}/../helpers/generate_service_file" --format shell --command "${COMMAND}" --arguments "${ARGUMENTS}" --description "${DESCRIPTION}" --service-name "${SERVICE_NAME}" < "${script_folder}/init_template.sh" > "${path}/${SERVICE_NAME}" 189 189 chmod a+x "${path}/${SERVICE_NAME}" 190 190 else
Note:
See TracChangeset
for help on using the changeset viewer.