[oe-commits] [openembedded-core] 12/26: go.bbclass: Fix binary installation path detection

git at git.openembedded.org git at git.openembedded.org
Mon Sep 11 12:08:27 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 16c886262f8ff1f8236199d3162fd1a0f69dbec9
Author: Otavio Salvador <otavio at ossystems.com.br>
AuthorDate: Fri Sep 8 18:04:32 2017 -0300

    go.bbclass: Fix binary installation path detection
    
    Go toolchain changes the installation path when building for the same
    architecture as the build host. This was already been considered in
    the GO_BUILD_BINDIR variable but was not being used by the go class.
    
    This fixes following error:
    
    ,----
    | ERROR: go-dep-0.3.0-r0 do_package: QA Issue: go-dep: Files/directories
    | were installed but not shipped in any package:
    |   /usr/lib/x86_64-oel-linux/go/bin/dep
    | Please set FILES such that these items are packaged. Alternatively if
    | they are unneeded, avoid installing them or delete them within
    | do_install.
    `----
    
    Signed-off-by: Otavio Salvador <otavio at ossystems.com.br>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/go.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/go.bbclass b/meta/classes/go.bbclass
index cedda68..e073cb9 100644
--- a/meta/classes/go.bbclass
+++ b/meta/classes/go.bbclass
@@ -3,7 +3,7 @@ inherit goarch
 GOROOT_class-native = "${STAGING_LIBDIR_NATIVE}/go"
 GOROOT = "${STAGING_LIBDIR_NATIVE}/${TARGET_SYS}/go"
 GOBIN_FINAL_class-native = "${GOROOT_FINAL}/bin"
-GOBIN_FINAL = "${GOROOT_FINAL}/bin/${GOOS}_${GOARCH}"
+GOBIN_FINAL = "${GOROOT_FINAL}/${GO_BUILD_BINDIR}"
 
 export GOOS = "${TARGET_GOOS}"
 export GOARCH = "${TARGET_GOARCH}"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list