Changeset 94767 in vbox
- Timestamp:
- May 1, 2022 9:54:25 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151153
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/Makefile.kmk
r94585 r94767 152 152 153 153 VBOX_VALIDATIONKIT_ISO_RSP = $(PATH_TARGET)/VBoxValidationKitISO.rsp 154 OTHERS += $(VBOX_VALIDATIONKIT_ISO_RSP)155 154 OTHERS_CLEAN += $(VBOX_VALIDATIONKIT_ISO_RSP) 156 155 … … 368 367 369 368 # 370 # Build the Validation Kit guest ISO re cipe consumed byRTIsoMaker.371 # 372 # We need this re cipe file because passing all those arguments to RTIsoMaker will blow up373 # the maximum command line length on some OSes.369 # Build the Validation Kit guest ISO response file for RTIsoMaker. 370 # 371 # We need this response file because passing all those arguments to RTIsoMaker 372 # will blow up the maximum command line length on some OSes. 374 373 # 375 374 $(VBOX_VALIDATIONKIT_ISO_RSP): | $$(dir $$@) 376 $(call MSG_L1,Creating Validation Kit guest ISO re cipe $@)377 $(APPEND) -nt $@\378 --iso-level 3\379 --rock-ridge\380 --joliet\381 --rational-attribs\382 --random-order-verification 2048\375 $(call MSG_L1,Creating Validation Kit guest ISO response file $@ ) 376 kmk_builtin_append -nt "$@" \ 377 '--iso-level=3' \ 378 '--rock-ridge' \ 379 '--joliet' \ 380 '--rational-attribs' \ 381 '--random-order-verification=2048' \ 383 382 $(foreach spec,$(VBOX_VALIDATIONKIT_FILESPEC) \ 384 383 ,$(if $(findstring =,$(spec)), $(spec), /$(lastword $(subst /$(INST_VALIDATIONKIT), ,$(spec))=$(spec))) ) \ … … 393 392 $(subst =, $(SP), $(spec)), \ 394 393 $(subst $(PATH_OUT_BASE), testcase,$(spec))))) \ 395 --volume-id \"VBOXVALK_$(VBOX_SVN_REV)_$(VBOX_VERSION_STRING_RAW)\"\396 --name-setup joliet\397 --volume-id \"VBoxValK $(VBOX_SVN_REV)\"394 '--volume-id="VBOXVALK_$(VBOX_SVN_REV)_$(VBOX_VERSION_STRING_RAW)"' \ 395 '--name-setup=joliet' \ 396 '--volume-id="VBoxValK $(VBOX_SVN_REV)"' 398 397 399 398 # … … 421 420 422 421 # Alias for creating the iso. 423 .PHONY: $(QUIET)$(RM) -f $(VBOX_VALIDATIONKIT_ISO_RSP)validationkit-iso422 .PHONY: validationkit-iso 424 423 validationkit-iso: $(VBOX_PATH_VALIDATIONKIT)/VBoxValidationKit.iso
Note:
See TracChangeset
for help on using the changeset viewer.