Bug 1859851 - Add missing skipping cargo trick on host rust targets. r=firefox-build-system-reviewers,sergesanspaille

Differential Revision: https://phabricator.services.mozilla.com/D191379
This commit is contained in:
Mike Hommey 2023-10-26 23:59:14 +00:00
Родитель 4baa2479d0
Коммит 3a044c7203
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -533,7 +533,7 @@ force-cargo-host-library-build:
$(call CARGO_BUILD) --lib $(cargo_host_flag) $(host_rust_features_flag)
$(call BUILDSTATUS,END_Rust $(notdir $(HOST_RUST_LIBRARY_FILE)))
$(HOST_RUST_LIBRARY_FILE): force-cargo-host-library-build ;
$(eval $(call make_cargo_rule,$(HOST_RUST_LIBRARY_FILE),force-cargo-host-library-build))
ifndef CARGO_NO_AUTO_ARG
force-cargo-host-library-%:
@ -582,7 +582,7 @@ force-cargo-host-program-build:
$(call CARGO_BUILD) $(addprefix --bin ,$(HOST_RUST_CARGO_PROGRAMS)) $(cargo_host_flag) $(host_program_features_flag)
$(call BUILDSTATUS,END_Rust $(HOST_RUST_CARGO_PROGRAMS))
$(HOST_RUST_PROGRAMS): force-cargo-host-program-build ;
$(foreach HOST_RUST_PROGRAM,$(HOST_RUST_PROGRAMS), $(eval $(call make_cargo_rule,$(HOST_RUST_PROGRAM),force-cargo-host-program-build)))
ifndef CARGO_NO_AUTO_ARG
force-cargo-host-program-%: