diff options
author | Ross Burton <ross.burton@arm.com> | 2025-03-19 17:41:41 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-03-19 11:37:46 -0700 |
commit | 632d43aa40e83d6c7b1212268ac569bf490420f4 (patch) | |
tree | 8ef3fd8c2e4fc4d6d8afaf86bea08c5cafb99a0a /meta-networking | |
parent | ca40346108e1daa926b37fd26c8d5451f1d9e46d (diff) | |
download | meta-openembedded-632d43aa40e83d6c7b1212268ac569bf490420f4.tar.gz |
rdist: don't inherit autotools
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>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-connectivity/rdist/rdist_6.1.5.bb | 6 |
1 files changed, 4 insertions, 2 deletions
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+)+)" | |||
36 | 36 | ||
37 | DEPENDS = "bison-native" | 37 | DEPENDS = "bison-native" |
38 | 38 | ||
39 | inherit autotools-brokensep | ||
40 | |||
41 | EXTRA_OEMAKE = "CPPFLAGS='${CFLAGS}' BIN_GROUP=root MAN_GROUP=root RDIST_MODE=755 RDISTD_MODE=755 MAN_MODE=644" | 39 | EXTRA_OEMAKE = "CPPFLAGS='${CFLAGS}' BIN_GROUP=root MAN_GROUP=root RDIST_MODE=755 RDISTD_MODE=755 MAN_MODE=644" |
42 | 40 | ||
41 | do_install() { | ||
42 | oe_runmake 'DESTDIR=${D}' install | ||
43 | } | ||
44 | |||
43 | # http://errors.yoctoproject.org/Errors/Details/186972/ | 45 | # http://errors.yoctoproject.org/Errors/Details/186972/ |
44 | COMPATIBLE_HOST:libc-musl = 'null' | 46 | COMPATIBLE_HOST:libc-musl = 'null' |