From 28f9df62f513c073b790b2d4c78a72649adce6ef Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 5 Jan 2017 14:10:31 +0100 Subject: [PATCH 1/1] build: fix HOST_CONFIGURE_VARS placement Ensure that HOST_CONFIGURE_VARS are set before the actual configure command instead of passing them as configure command arguments. This change brings host-build.mk in line with package-defaults.mk and makes host configure environment variables work as expected. Signed-off-by: Jo-Philipp Wich --- include/host-build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/host-build.mk b/include/host-build.mk index b2f017bee2..f2109851d9 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -80,9 +80,9 @@ define Host/Configure/Default $(if $(HOST_CONFIGURE_PARALLEL),+)(cd $(HOST_BUILD_DIR)/$(3); \ if [ -x configure ]; then \ $(CP) $(SCRIPT_DIR)/config.{guess,sub} $(HOST_BUILD_DIR)/$(3)/ && \ + $(HOST_CONFIGURE_VARS) \ $(2) \ $(HOST_CONFIGURE_CMD) \ - $(HOST_CONFIGURE_VARS) \ $(HOST_CONFIGURE_ARGS) \ $(1); \ fi \ -- 2.30.2