summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-containers/cri-tools/cri-tools_git.bb9
1 files changed, 6 insertions, 3 deletions
diff --git a/recipes-containers/cri-tools/cri-tools_git.bb b/recipes-containers/cri-tools/cri-tools_git.bb
index 51ecc205..af88998a 100644
--- a/recipes-containers/cri-tools/cri-tools_git.bb
+++ b/recipes-containers/cri-tools/cri-tools_git.bb
@@ -16,7 +16,7 @@ What is not in scope for this project? \
16 non-exist on the kube-apiserver. \ 16 non-exist on the kube-apiserver. \
17 " 17 "
18 18
19SRCREV_cri-tools = "77d02a0356e9e1dca58d44e54dd0799e89856387" 19SRCREV_cri-tools = "4daea44918cc34b63617c6c9e9923f43d47ddfdd"
20SRC_URI = "\ 20SRC_URI = "\
21 git://github.com/kubernetes-sigs/cri-tools.git;branch=master;name=cri-tools;protocol=https \ 21 git://github.com/kubernetes-sigs/cri-tools.git;branch=master;name=cri-tools;protocol=https \
22 file://0001-build-allow-environmental-CGO-settings-and-pass-dont.patch \ 22 file://0001-build-allow-environmental-CGO-settings-and-pass-dont.patch \
@@ -27,7 +27,7 @@ LIC_FILES_CHKSUM = "file://src/import/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c2
27 27
28GO_IMPORT = "import" 28GO_IMPORT = "import"
29 29
30PV = "1.24.2+git${SRCREV_cri-tools}" 30PV = "1.26.1+git${SRCREV_cri-tools}"
31 31
32RPROVIDES:${PN} += "crictl" 32RPROVIDES:${PN} += "crictl"
33PACKAGES =+ "${PN}-critest" 33PACKAGES =+ "${PN}-critest"
@@ -63,7 +63,10 @@ do_compile() {
63 63
64do_install() { 64do_install() {
65 install -d ${D}${bindir} 65 install -d ${D}${bindir}
66 install -m 755 -D ${S}/src/import/build/bin/* ${D}/${bindir} 66 for f in $(find ${S}/src/import/build/bin/ -type f); do
67 echo "installing $f to ${D}/${bindir}"
68 install -m 755 -D $f ${D}/${bindir}
69 done
67} 70}
68 71
69FILES:${PN}-critest = "${bindir}/critest" 72FILES:${PN}-critest = "${bindir}/critest"