diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2023-05-03 21:47:11 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-05-16 07:30:12 -0400 |
commit | 49d7bfd98866736252ea5cfadbb23e2f2143ef76 (patch) | |
tree | bc67450c8f10ba99d126b821fa9ca165d0856f9b | |
parent | 2a61bddded3d7c282f8e15e9a6907d291054a81c (diff) | |
download | meta-openembedded-49d7bfd98866736252ea5cfadbb23e2f2143ef76.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: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/cpulimit/cpulimit_0.2.bb | 4 |
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" | |||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4" | 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=86c1c0d961a437e529db93aa3bb32dc4" |
5 | SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd" | 5 | SRCREV ?= "f4d2682804931e7aea02a869137344bb5452a3cd" |
6 | 6 | ||
7 | SRC_URI = "git://g...@github.com/opsengine/cpulimit.git;protocol=https;branch=master \ | 7 | SRC_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 | } |
16 | do_install() { | 16 | do_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 | ||
21 | CFLAGS += "-D_GNU_SOURCE ${LDFLAGS}" | 21 | CFLAGS += "-D_GNU_SOURCE ${LDFLAGS}" |