From b60ea423608cf6f08e1b7bb41fe8f326bd0c3906 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Mon, 19 Apr 2021 02:24:43 +0100 Subject: [PATCH] Makefile: Fix mkdir target/bundled-sources when nailing Signed-off-by: Ian Jackson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e157f231..cfce16d1 100644 --- a/Makefile +++ b/Makefile @@ -253,7 +253,7 @@ bundled-sources:: $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)) TARGET_BUNDLED=$(TARGET_DIR)/bundled-sources $(TARGET_BUNDLED): - $(NAILING_CARGO_JUST_RUN) mkdir -p $@ + $(NAILING_CARGO_JUST_RUN) mkdir -p $(abspath $@) $(addprefix bundled-sources/, $(BUNDLED_SOURCES_DIRS)): \ bundled-sources/%: stamp/cargo.bundle-sources $(TARGET_BUNDLED) -- 2.30.2