Skip to content

Commit

Permalink
build: add --locked flag to cargo build
Browse files Browse the repository at this point in the history
Partial backport of #37851
  • Loading branch information
zmb3 authored and github-actions committed Feb 7, 2024
1 parent 9fc9455 commit c9701f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -357,9 +357,9 @@ ifeq ("$(with_rdpclient)", "yes")
.PHONY: rdpclient
rdpclient:
ifneq ("$(FIPS)","")
cargo build -p rdp-client --features=fips --release $(CARGO_TARGET)
cargo build -p rdp-client --features=fips --release --locked $(CARGO_TARGET)
else
cargo build -p rdp-client --release $(CARGO_TARGET)
cargo build -p rdp-client --release --locked $(CARGO_TARGET)
endif
else
.PHONY: rdpclient
Expand Down

0 comments on commit c9701f1

Please sign in to comment.