diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2021-03-16 14:05:25 +0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-03-16 08:58:39 -0400 |
commit | a878d3aedf0339cf121c0c933d9f3cfb526f56f9 (patch) | |
tree | 32448e7de8cccf245616b9cd9b881827c836dac0 /recipes-connectivity | |
parent | b45600fc98b1a2f2dbc18418de52930ba2192190 (diff) | |
download | meta-cloud-services-master.tar.gz meta-cloud-services-master.tar.bz2 meta-cloud-services-master.zip |
With the latest go version bump in oe-core export GO111MODULE is
on by default. Our build is not setup to use go modules, so we
disable it and avoid configuration errors.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-connectivity')
-rw-r--r-- | recipes-connectivity/consul/consul_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-connectivity/consul/consul_git.bb b/recipes-connectivity/consul/consul_git.bb index b96499c..f4955e2 100644 --- a/recipes-connectivity/consul/consul_git.bb +++ b/recipes-connectivity/consul/consul_git.bb @@ -28,6 +28,10 @@ COMPATIBLE_HOST_mipsarch = "null" SYSTEMD_SERVICE_${PN} = "consul.service" SYSTEMD_AUTO_ENABLE_${PN} = "disable" +do_compile_prepend () { + export GO111MODULE=off +} + do_install_append() { install -d ${D}/${systemd_unitdir}/system cp ${WORKDIR}/consul.service ${D}/${systemd_unitdir}/system |