diff options
author | Otavio Salvador <otavio.salvador@gmail.com> | 2020-05-21 23:22:35 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-26 23:07:12 +0100 |
commit | 030978c955725c456d7c1cd6a64798fad505d281 (patch) | |
tree | b81e86f8d592fcc8e3b7117ceec5f94185a17fa2 /meta | |
parent | d280211773a8355e6b647a266f7da8ebe062f645 (diff) | |
download | poky-030978c955725c456d7c1cd6a64798fad505d281.tar.gz |
glide: Avoid use of 'go mod' support
Glide utility must not use 'go mod' support, so we explicitly disable
it.
(From OE-Core rev: b5a4369ba606677285b0a89a78c040b38f57767f)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/glide/glide_0.13.3.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/glide/glide_0.13.3.bb b/meta/recipes-devtools/glide/glide_0.13.3.bb index ebad0ec60a..31295edf90 100644 --- a/meta/recipes-devtools/glide/glide_0.13.3.bb +++ b/meta/recipes-devtools/glide/glide_0.13.3.bb | |||
@@ -9,6 +9,10 @@ SRCREV = "8ed5b9292379d86c39592a7e6a58eb9c903877cf" | |||
9 | 9 | ||
10 | inherit go | 10 | inherit go |
11 | 11 | ||
12 | # New Go versions has Go modules support enabled by default and cause the Glide | ||
13 | # tool build to fail. | ||
14 | export GO111MODULE = "off" | ||
15 | |||
12 | RDEPENDS_${PN}-dev += "bash" | 16 | RDEPENDS_${PN}-dev += "bash" |
13 | RDEPENDS_${PN}-ptest += "bash" | 17 | RDEPENDS_${PN}-ptest += "bash" |
14 | 18 | ||