From 0ebbac22ebcf25814f228356f21610854699ec9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 12 Nov 2023 15:27:36 +0100 Subject: [PATCH] Remove `cargo update` from the Makefile Updating the dependencies before each builds does not allow reproductible builds. --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index b1e3284..240a390 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,7 @@ MAN_DST_DIR = $(TARGET_DIR)/man FEATURES = openssl_dyn -all: update acmed tacd - -update: - cargo update +all: acmed tacd acmed: man_dir if test -n "$(TARGET)"; then \ @@ -64,4 +61,4 @@ install: clean: cargo clean -.PHONY: all update acmed tacd man_dir install clean +.PHONY: all acmed tacd man_dir install clean