- Timestamp:
- Sep 29, 2022 8:28:15 PM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 153845
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r96910 r96934 4402 4402 if $(intersects darwin all 1,$(VBOX_WITH_CORP_CODE_SIGNING)) 4403 4403 ## @todo cannot handle $(2), the identifier. 4404 VBOX_SIGN_FILE_FN = $(call MSG_TOOL,SIGNTOOL,,$(1),$(2))$(NLTAB)$(call VBOX_CCS_SIGN_CMD,binary,$(1)) 4404 VBOX_SIGN_FILE_FN = $(call MSG_TOOL,SIGNTOOL,,$(1),$(2))$(NLTAB) \ 4405 $(call VBOX_CCS_SIGN_CMD,mac_dmg,$(1))$(NLTAB) \ 4406 $(REDIRECT) -E 'LC_ALL=C' -we "$(1).tmp" -- ditto -x -k -V "$(1).zip" "$(call VBOX_DIRX,$(1))"$(NLTAB) \ 4407 dirname="$(call VBOX_DIRX,$(1))/$(DOLLAR)($(SED) -n -e 's+^copying file \([0-9]\{1,\}\)/.\{1,\}$(DOLLAR)+\1+p')" ; \ 4408 $(MV) -f -- "$(DOLLAR)dirname/$(basename $(1))" "$(call VBOX_DIRX,$(1))" ; \ 4409 $(RM) -Rf -- "$(DOLLAR)dirname/"$(NLTAB) \ 4410 $(RM) -f -- "$(1).zip" "$(1).tmp" 4405 4411 else 4406 4412 VBOX_SIGN_FILE_FN = $(call MSG_TOOL,SIGNTOOL,,$(1),$(2))$(NLTAB)$(VBOX_CODESIGN) \ … … 4419 4425 # @param 2 Identifier, optional. 4420 4426 # @note Will segfault if --file-list is used on 10.15.2 (kSecCodeInfoChangedFiles -> NULL, outputter doesn't check for NULL). 4421 VBOX_SIGN_DMG_FN = $(filter-out --file-list=-,$(VBOX_SIGN_FILE_FN)) 4427 if $(intersects darwin all 1,$(VBOX_WITH_CORP_CODE_SIGNING)) 4428 VBOX_SIGN_DMG_FN = $(call MSG_TOOL,SIGNTOOL,,$(1),$(2))$(NLTAB)$(call VBOX_CCS_SIGN_CMD,binary,$(1)) 4429 else 4430 VBOX_SIGN_DMG_FN = $(filter-out --file-list=-,$(VBOX_SIGN_FILE_FN)) 4431 endif 4422 4432 4423 4433 ## Sign a PKG file. Used with corp code signing only.
Note:
See TracChangeset
for help on using the changeset viewer.