The 'go env' in the do_compile function and
the set -x/+x in the do_install_ptest function
were used for debugging the bbclass, and aren't
really needed.
Signed-off-by: Matt Madison <matt@madison.systems>
Signed-off-by: Ross Burton <ross.burton@intel.com>
go_do_compile() {
export TMPDIR="${GOTMPDIR}"
- ${GO} env
if [ -n "${GO_INSTALL}" ]; then
if [ -n "${GO_LINKSHARED}" ]; then
${GO} install ${GOBUILDFLAGS} `go_list_packages`
}
do_install_ptest_base() {
-set -x
test -f "${B}/.go_compiled_tests.list" || exit 0
tests=""
while read test; do
else
rm -rf ${D}${PTEST_PATH}
fi
-set +x
}
EXPORT_FUNCTIONS do_unpack do_configure do_compile do_install