Message ID | 20250319174152.706861-1-ross.burton@arm.com |
---|---|
State | Accepted |
Headers | show |
Series | [v2,01/12] rdisk: don't inherit autotools | expand |
diff --git a/meta-networking/recipes-connectivity/rdist/rdist_6.1.5.bb b/meta-networking/recipes-connectivity/rdist/rdist_6.1.5.bb index e6d99431be..abe23cb46e 100644 --- a/meta-networking/recipes-connectivity/rdist/rdist_6.1.5.bb +++ b/meta-networking/recipes-connectivity/rdist/rdist_6.1.5.bb @@ -36,9 +36,11 @@ UPSTREAM_CHECK_REGEX = "/rdist/(?P<pver>\d+(\.\d+)+)" DEPENDS = "bison-native" -inherit autotools-brokensep - EXTRA_OEMAKE = "CPPFLAGS='${CFLAGS}' BIN_GROUP=root MAN_GROUP=root RDIST_MODE=755 RDISTD_MODE=755 MAN_MODE=644" +do_install() { + oe_runmake 'DESTDIR=${D}' install +} + # http://errors.yoctoproject.org/Errors/Details/186972/ COMPATIBLE_HOST:libc-musl = 'null'
This upstream does not in fact use autotools, so remove the inherit and implement the required do_install directly. Signed-off-by: Ross Burton <ross.burton@arm.com> --- meta-networking/recipes-connectivity/rdist/rdist_6.1.5.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)