summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2023-05-03 22:08:20 +0200
committerKhem Raj <raj.khem@gmail.com>2023-05-03 21:24:55 -0700
commit099476a72f4f931376c13e575a5acf32ce1db978 (patch)
tree49bc073efa4aba9ac356ba765335b2f317423934 /meta-oe/recipes-support
parent412fc53307ad6d7570beb6dd0ccece010f93c7d4 (diff)
downloadmeta-openembedded-099476a72f4f931376c13e575a5acf32ce1db978.tar.gz
cpulimit: fix do_install with multilib
* fixes: DEBUG: Executing shell function do_install install: cannot stat 'TOPDIR/.../lib32-cpulimit/0.2-r0/git/src/lib32-cpulimit': No such file or directory WARNING: exit code 1 from a shell command. * drop strange 'g...@' from SRC_URI Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r--meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
index 86a58beda4..58e4fd6e88 100644
--- a/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
+++ b/meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb
@@ -4,7 +4,7 @@ LICENSE = "GPL-2.0-or-later"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4" 4LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4"
5SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd" 5SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd"
6 6
7SRC_URI = "git://g...@github.com/opsengine/cpulimit.git;protocol=https;branch=master \ 7SRC_URI = "git://github.com/opsengine/cpulimit.git;protocol=https;branch=master \
8 file://0001-Remove-sys-sysctl.h-and-add-missing-libgen.h-include.patch \ 8 file://0001-Remove-sys-sysctl.h-and-add-missing-libgen.h-include.patch \
9 " 9 "
10 10
@@ -15,7 +15,7 @@ do_compile() {
15} 15}
16do_install() { 16do_install() {
17 install -d ${D}${sbindir} 17 install -d ${D}${sbindir}
18 install -m 0755 ${B}/src/${PN} ${D}${sbindir}/ 18 install -m 0755 ${B}/src/${BPN} ${D}${sbindir}/
19} 19}
20 20
21CFLAGS += "-D_GNU_SOURCE ${LDFLAGS}" 21CFLAGS += "-D_GNU_SOURCE ${LDFLAGS}"