diff options
| author | Felix Fietkau | 2021-11-04 18:05:16 +0000 |
|---|---|---|
| committer | Felix Fietkau | 2021-11-04 18:05:17 +0000 |
| commit | 10cbce3b52c9a21b115a471fa548a40e1212e3e9 (patch) | |
| tree | db762b53a6b789589365a303cd4d9ac4f0f07bb1 | |
| parent | 2a832b3df5990f33aa3d5944733e43bf5287475c (diff) | |
| download | openwrt-10cbce3b52c9a21b115a471fa548a40e1212e3e9.tar.gz | |
tools: ensure that BIN_DIR is created early
Fixes llvm-bpf buildbot failure
Signed-off-by: Felix Fietkau <nbd@nbd.name>
| -rw-r--r-- | tools/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index ad8eeb31a4..686d5294d3 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -125,6 +125,9 @@ define PrepareStaging ); done endef +$(BIN_DIR): + mkdir -p $@ + # preparatory work $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build $(call PrepareStaging,$(STAGING_DIR)) @@ -145,8 +148,8 @@ endif endif -$(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared -$(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared +$(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $(BIN_DIR) +$(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $(BIN_DIR) # prerequisites for the individual targets $(curdir)/ := .config prereq |