From fe79f0e3cd1e9b8f5f4d16bcf29bc2f85d564299 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 12 Dec 2020 00:10:57 +0000 Subject: [PATCH] If bundle-rust-sources is from PATH, don't make it a dependency Otherwise make complains that it can't build it. Signed-off-by: Ian Jackson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ba478881..53a75bf4 100644 --- a/Makefile +++ b/Makefile @@ -188,7 +188,7 @@ bundled-sources:: $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)) TARGET_BUNDLED=$(TARGET_DIR)/bundled-sources $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)): \ -bundled-sources/%: $(BUNDLE_SOURCES) +bundled-sources/%: $(wildcard $(BUNDLE_SOURCES)) set -e; d=$(abspath $(TARGET_BUNDLED)); \ $(NAILING_CARGO_JUST_RUN) mkdir -p $$d; \ $(if $(filter-out otter,$*), cd ../$*;) \ -- 2.30.2