diff options
author | 2021-07-31 23:31:13 -0400 | |
---|---|---|
committer | 2021-07-31 23:49:54 -0400 | |
commit | 0cffcd09a44b2a58452a5bb13714bfc47d6546bf (patch) | |
tree | b91584b573ce42431a35a9b8f064d8be57974e1e /recipes-connectivity/consul/consul_git.bb | |
parent | e887a996155f8b9f22d6aca0e31b5fbccd82751e (diff) | |
download | meta-cloud-services-0cffcd09a44b2a58452a5bb13714bfc47d6546bf.tar.gz meta-cloud-services-0cffcd09a44b2a58452a5bb13714bfc47d6546bf.tar.bz2 meta-cloud-services-0cffcd09a44b2a58452a5bb13714bfc47d6546bf.zip |
global: overrides conversion
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-connectivity/consul/consul_git.bb')
-rw-r--r-- | recipes-connectivity/consul/consul_git.bb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/recipes-connectivity/consul/consul_git.bb b/recipes-connectivity/consul/consul_git.bb index a49d4a16..828a20ec 100644 --- a/recipes-connectivity/consul/consul_git.bb +++ b/recipes-connectivity/consul/consul_git.bb @@ -12,7 +12,7 @@ SRC_URI = "git://${GO_IMPORT}.git;branch=main \ S = "${WORKDIR}/git" -RDEPENDS_${PN}-dev_append = " bash" +RDEPENDS:${PN}-dev:append = " bash" # Temporarily workaround an issue with GO 1.12.1 # http://www.lyddzz.com/github_/golang/go/issues/30768 @@ -23,21 +23,21 @@ inherit systemd go # Besides the hosts specified in goarch, we do not build for mips. # -COMPATIBLE_HOST_mipsarch = "null" +COMPATIBLE_HOST:mipsarch = "null" -SYSTEMD_SERVICE_${PN} = "consul.service" -SYSTEMD_AUTO_ENABLE_${PN} = "disable" +SYSTEMD_SERVICE:${PN} = "consul.service" +SYSTEMD_AUTO_ENABLE:${PN} = "disable" -do_compile_prepend () { +do_compile:prepend () { export GO111MODULE=off } -do_install_append() { +do_install:append() { install -d ${D}/${systemd_unitdir}/system cp ${WORKDIR}/consul.service ${D}/${systemd_unitdir}/system } -FILES_${PN} += "${systemd_unitdir}/system" +FILES:${PN} += "${systemd_unitdir}/system" #for i586, executable consul contains textrel -INSANE_SKIP_${PN} += "textrel" +INSANE_SKIP:${PN} += "textrel" |