diff mbox series

[1/9] rdisk: don't inherit autotools

Message ID 20250319120836.982987-1-ross.burton@arm.com
State New
Headers show
Series [1/9] rdisk: don't inherit autotools | expand

Commit Message

Ross Burton March 19, 2025, 12:08 p.m. UTC
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(-)

Comments

Khem Raj March 19, 2025, 4:37 p.m. UTC | #1
typo in subject, I have taken care of it.

On Wed, Mar 19, 2025 at 5:08 AM Ross Burton via lists.openembedded.org
<ross.burton=arm.com@lists.openembedded.org> wrote:
>
> 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(-)
>
> 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'
> --
> 2.43.0
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#116068): https://lists.openembedded.org/g/openembedded-devel/message/116068
> Mute This Topic: https://lists.openembedded.org/mt/111787461/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
diff mbox series

Patch

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'