diff options
author | Jason Wessel <jason.wessel@windriver.com> | 2017-09-13 12:39:46 -0700 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-09-14 09:49:00 -0400 |
commit | 01a8d4537012ad93dc8510e9b762acdc8c4536c7 (patch) | |
tree | 8b22ba0333f7a8c83193bee31b33a3b307f1164a /recipes-containers/runc/runc-docker/0001-runc-Add-console-socket-dev-null.patch | |
parent | 718592922bd64da4d609c96e831f6aba05e44a8d (diff) | |
download | meta-virtualization-01a8d4537012ad93dc8510e9b762acdc8c4536c7.tar.gz |
nets, docker, runc, oci-*tools: go.bbclass compile fixes
Recently in the oe-core the go.bbclass changed and requires the
defition of the GO_IMPORT variable. This was intended to simplify how
the compilation works with go packages and it is still a work in
progress.
This patch set makes the recipes compatible to generate the same end
result as before using the new go.bbclass from oe-core.
Any patches that were included in the recipes had to have the paths
adjusted because the new go.bbclass manipulates the notion of S to be
S + "src" + "$GO_IMPORT" internally for the purpose of unpack, patch
and compile.
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-containers/runc/runc-docker/0001-runc-Add-console-socket-dev-null.patch')
-rw-r--r-- | recipes-containers/runc/runc-docker/0001-runc-Add-console-socket-dev-null.patch | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-containers/runc/runc-docker/0001-runc-Add-console-socket-dev-null.patch b/recipes-containers/runc/runc-docker/0001-runc-Add-console-socket-dev-null.patch index f49adfbf..48c1250d 100644 --- a/recipes-containers/runc/runc-docker/0001-runc-Add-console-socket-dev-null.patch +++ b/recipes-containers/runc/runc-docker/0001-runc-Add-console-socket-dev-null.patch | |||
@@ -14,8 +14,8 @@ Signed-off-by: Jason Wessel <jason.wessel@windriver.com> | |||
14 | 14 | ||
15 | diff --git a/utils_linux.go b/utils_linux.go | 15 | diff --git a/utils_linux.go b/utils_linux.go |
16 | index 8085f7fe..e6d31b35 100644 | 16 | index 8085f7fe..e6d31b35 100644 |
17 | --- a/utils_linux.go | 17 | --- a/src/import/utils_linux.go |
18 | +++ b/utils_linux.go | 18 | +++ b/src/import/utils_linux.go |
19 | @@ -227,6 +227,11 @@ type runner struct { | 19 | @@ -227,6 +227,11 @@ type runner struct { |
20 | } | 20 | } |
21 | 21 | ||