[openwrt/openwrt] include/meson: fix host build directory
LEDE Commits
lede-commits at lists.infradead.org
Sun Feb 6 15:50:22 PST 2022
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/4c42e2d9dda739baa6a144cdb009aef1a33824a0
commit 4c42e2d9dda739baa6a144cdb009aef1a33824a0
Author: Rosen Penev <rosenp at gmail.com>
AuthorDate: Sun Jan 30 18:52:15 2022 -0800
include/meson: fix host build directory
When using a non default MESON_HOST_BUILD_DIR, HOST_BUILD_DIR is not
appropriate to use. This change matches the target configure section.
Signed-off-by: Rosen Penev <rosenp at gmail.com>
---
include/meson.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/meson.mk b/include/meson.mk
index e101de4d89..102e74b542 100644
--- a/include/meson.mk
+++ b/include/meson.mk
@@ -98,7 +98,7 @@ define Host/Configure/Meson
--native-file $(HOST_BUILD_DIR)/openwrt-native.txt \
$(MESON_HOST_ARGS) \
$(MESON_HOST_BUILD_DIR) \
- $(HOST_BUILD_DIR), \
+ $(MESON_HOST_BUILD_DIR)/.., \
$(MESON_HOST_VARS))
endef
More information about the lede-commits
mailing list