diff --git a/buildsystems/cargo/debian-makefile-template b/buildsystems/cargo/debian-makefile-template index f6ff64b..d97aeed 100644 --- a/buildsystems/cargo/debian-makefile-template +++ b/buildsystems/cargo/debian-makefile-template @@ -27,10 +27,10 @@ check: # Installing multiple Rust binaries is currently unsupported due to the limitation of cfg_me install: {{^cargo_workspaces}} - $(CARGO_ENVIRON) $(CARGO_COMMON_ENV) cargo install --frozen --offline --path . --root $(DESTDIR)/usr --target $(CARGO_ARCH) $(CARGO_ARGS) + $(CARGO_ENVIRON) $(CARGO_COMMON_ENV) cargo install --no-track --frozen --offline --path . --root $(DESTDIR)/usr --target $(CARGO_ARCH) $(CARGO_ARGS) {{/cargo_workspaces}} {{#cargo_workspaces}} - $(CARGO_ENVIRON) $(CARGO_COMMON_ENV) cargo install --frozen --offline --path {{workspace_path}} --root $(DESTDIR)/usr --target $(CARGO_ARCH) $(CARGO_ARGS) + $(CARGO_ENVIRON) $(CARGO_COMMON_ENV) cargo install --no-track --frozen --offline --path {{workspace_path}} --root $(DESTDIR)/usr --target $(CARGO_ARCH) $(CARGO_ARGS) {{/cargo_workspaces}} test "`ls $(DESTDIR)/usr/bin | wc -l`" -eq 1 mkdir -p target/man