Hey, running on 2022.02-rc2. I tried adding a local go package inside my external tree using the following stripped down config. Config.in (included correctly, showing up inside menuconfig) ``` config BR2_PACKAGE_APOGEE bool "apogee" depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS help my help string ``` .mk ``` APOGEE_SITE = $(BR2_EXTERNAL_MYTREE_PATH)/src/apogee APOGEE_SITE_METHOD = local APOGEE_BUILD_TARGETS = cmd/apogee APOGEE_INSTALL_BINS = apogee APOGEE_GOMOD = "<stripped>/apogee" ... $(eval $(golang-package)) ``` Whenever i try building this package i get: ``` /bin/sh: Line 1: /home/<censored>/Schreibtisch/<censored>/mytree/output/host/bin/go: File or directory not found ``` Building a different go package like tinifier seems to trigger the bootstrap build fine though. Is this some limitation due to the "local" site source or due to the external tree im using? Kind regards Martin
Hello, Thanks for your bug report, the following patch should fix your issue: https://patchwork.ozlabs.org/project/buildroot/patch/11477_1644506977_62052F61_11477_142_1_1cfdf4aa3ac96d2d2cf246385325f93b451d773b.1644506959.git.yann.morin@orange.com/ Unfortunately, this patch has not been applied to master yet. Best Regards, Fabrice
Thanks for bringing this to my attention Fabrice! Applied for now, i hope it makes its way into 2022.02 sooner or later.
Fixed by https://git.buildroot.org/buildroot/commit/?id=3539f45ca09558a22fb5816baae9088c34490380, thanks