From 9ad1437c5ec697bdef0a567ea47f1dc696a7d64d Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Mon, 7 Mar 2022 16:42:56 +0100 Subject: [PATCH] package/pkg-golang: fix build with per-package directories Build with per-package directory is broken, because go is not found in the PATH, when trying to download and vendor a go package. This is because FOO_DL_ENV contains $(HOST_GO_COMMON_ENV), which defines the PATH as PATH=$(BR_PATH). This is correct, except this is expanded at the time the golang-package macro is evaluated, which means PATH contains the 'global' BR_PATH, i.e.: $(O)/host/bin:$(O)/host/sbin:... However, with PPD, this does not yet exist at build time; only the per-package host directory exists. We want to have it expanded at the time the recipe is run, so like all other variables, we need to $$-expand it. At the same time, also $$-expand two other variables (even though those are benign, it is better for consistency that they be $$-expanded). Signed-off-by: Yann E. MORIN Cc: Thomas Petazzoni Cc: Anisse Astier Cc: Christian Stewart Reviewed-by: Christian Stewart Signed-off-by: Peter Korsgaard --- package/pkg-golang.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package/pkg-golang.mk b/package/pkg-golang.mk index ddefdf1214..f1c5cfd350 100644 --- a/package/pkg-golang.mk +++ b/package/pkg-golang.mk @@ -45,7 +45,7 @@ $(2)_BUILD_OPTS += \ -modcacherw \ -tags "$$($(2)_TAGS)" \ -trimpath \ - -p $(PARALLEL_JOBS) + -p $$(PARALLEL_JOBS) # Target packages need the Go compiler on the host at download time (for # vendoring), and at build and install time. @@ -86,7 +86,7 @@ $(2)_POST_PATCH_HOOKS += $(2)_GEN_GOMOD $(2)_DOWNLOAD_POST_PROCESS = go $(2)_DL_ENV += \ - $(HOST_GO_COMMON_ENV) \ + $$(HOST_GO_COMMON_ENV) \ GOPROXY=direct \ BR_GOMOD=$$($(2)_GOMOD) @@ -134,7 +134,7 @@ endif ifndef $(2)_INSTALL_TARGET_CMDS define $(2)_INSTALL_TARGET_CMDS $$(foreach d,$$($(2)_INSTALL_BINS),\ - $(INSTALL) -D -m 0755 $$(@D)/bin/$$(d) $$(TARGET_DIR)/usr/bin/$$(d) + $$(INSTALL) -D -m 0755 $$(@D)/bin/$$(d) $$(TARGET_DIR)/usr/bin/$$(d) ) endef endif @@ -143,7 +143,7 @@ endif ifndef $(2)_INSTALL_CMDS define $(2)_INSTALL_CMDS $$(foreach d,$$($(2)_INSTALL_BINS),\ - $(INSTALL) -D -m 0755 $$(@D)/bin/$$(d) $$(HOST_DIR)/bin/$$(d) + $$(INSTALL) -D -m 0755 $$(@D)/bin/$$(d) $$(HOST_DIR)/bin/$$(d) ) endef endif