From: Jackie Huang Date: Mon, 30 Sep 2019 05:34:32 +0000 (+0800) Subject: docker-distribution: fix build with go 1.12 X-Git-Tag: bronze-rc0~145 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=2d00ead5680c983a830cfb53716d3195fe445a4d;p=pti%2Frtp.git docker-distribution: 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: If02cf3303e05f9909d2d6c5a94623892e14b5220 --- diff --git a/meta-oran/recipes-containers/docker-distribution/docker-distribution_git.bbappend b/meta-oran/recipes-containers/docker-distribution/docker-distribution_git.bbappend new file mode 100644 index 0000000..15fa53a --- /dev/null +++ b/meta-oran/recipes-containers/docker-distribution/docker-distribution_git.bbappend @@ -0,0 +1,7 @@ +# +# Copyright (C) 2019 Wind River Systems, Inc. +# + +do_compile_prepend() { + unset GOCACHE +}