From 5c6604d20cd81e3d30fcd3c5a5a675e43a3ec858 Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Wed, 14 Aug 2019 13:56:04 +0800 Subject: [PATCH] runc-docker: fix build with go 1.12 Fixed the issue: | build cache is disabled by GOCACHE=off, but required as of Go 1.12 Issue-ID: INF-4 Signed-off-by: Jackie Huang Change-Id: Iec4cb68b75e874ab306e65eafbe69ecb2eb64159 --- meta-oran/recipes-containers/runc/runc-docker_git.bbappend | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 meta-oran/recipes-containers/runc/runc-docker_git.bbappend diff --git a/meta-oran/recipes-containers/runc/runc-docker_git.bbappend b/meta-oran/recipes-containers/runc/runc-docker_git.bbappend new file mode 100644 index 0000000..15fa53a --- /dev/null +++ b/meta-oran/recipes-containers/runc/runc-docker_git.bbappend @@ -0,0 +1,7 @@ +# +# Copyright (C) 2019 Wind River Systems, Inc. +# + +do_compile_prepend() { + unset GOCACHE +} -- 2.16.6