summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/go.bbclass3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/go.bbclass b/meta/classes/go.bbclass
index 96302a187c..21ac2276c5 100644
--- a/meta/classes/go.bbclass
+++ b/meta/classes/go.bbclass
@@ -89,7 +89,6 @@ do_configure[dirs] =+ "${GOTMPDIR}"
89 89
90go_do_compile() { 90go_do_compile() {
91 export TMPDIR="${GOTMPDIR}" 91 export TMPDIR="${GOTMPDIR}"
92 ${GO} env
93 if [ -n "${GO_INSTALL}" ]; then 92 if [ -n "${GO_INSTALL}" ]; then
94 if [ -n "${GO_LINKSHARED}" ]; then 93 if [ -n "${GO_LINKSHARED}" ]; then
95 ${GO} install ${GOBUILDFLAGS} `go_list_packages` 94 ${GO} install ${GOBUILDFLAGS} `go_list_packages`
@@ -126,7 +125,6 @@ go_do_install() {
126} 125}
127 126
128do_install_ptest_base() { 127do_install_ptest_base() {
129set -x
130 test -f "${B}/.go_compiled_tests.list" || exit 0 128 test -f "${B}/.go_compiled_tests.list" || exit 0
131 tests="" 129 tests=""
132 while read test; do 130 while read test; do
@@ -160,7 +158,6 @@ EOF
160 else 158 else
161 rm -rf ${D}${PTEST_PATH} 159 rm -rf ${D}${PTEST_PATH}
162 fi 160 fi
163set +x
164} 161}
165 162
166EXPORT_FUNCTIONS do_unpack do_configure do_compile do_install 163EXPORT_FUNCTIONS do_unpack do_configure do_compile do_install