summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go_1.11.bb
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2019-05-27 23:39:18 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-05-29 12:53:46 +0100
commit03bfbbb1d86f102ce23ee6ac0d4b905fc241f23c (patch)
tree539e20bbcd61173004f062cd0b90145575a7258c /meta/recipes-devtools/go/go_1.11.bb
parent862438543ef04a3c23f38ec65cd66a3b4e3907d5 (diff)
downloadopenembedded-core-03bfbbb1d86f102ce23ee6ac0d4b905fc241f23c.tar.gz
Remove Go 1.11
There doesn't seem to be a reason to keep it in addition to 1.12 now. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/go/go_1.11.bb')
-rw-r--r--meta/recipes-devtools/go/go_1.11.bb14
1 files changed, 0 insertions, 14 deletions
diff --git a/meta/recipes-devtools/go/go_1.11.bb b/meta/recipes-devtools/go/go_1.11.bb
deleted file mode 100644
index 42cdb0430a..0000000000
--- a/meta/recipes-devtools/go/go_1.11.bb
+++ /dev/null
@@ -1,14 +0,0 @@
-require go-${PV}.inc
-require go-target.inc
-
-export GOBUILDMODE=""
-
-# Add pie to GOBUILDMODE to satisfy "textrel" QA checking, but mips
-# doesn't support -buildmode=pie, so skip the QA checking for mips and its
-# variants.
-python() {
- if 'mips' in d.getVar('TARGET_ARCH'):
- d.appendVar('INSANE_SKIP_%s' % d.getVar('PN'), " textrel")
- else:
- d.setVar('GOBUILDMODE', 'pie')
-}