From: Jackie Huang Date: Wed, 14 Aug 2019 05:56:04 +0000 (+0800) Subject: runc-docker: fix build with go 1.12 X-Git-Tag: bronze-rc0~152 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=5c6604d20cd81e3d30fcd3c5a5a675e43a3ec858;p=pti%2Frtp.git 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 --- 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 +}