Message ID | 20250319120836.982987-9-ross.burton@arm.com |
---|---|
State | New |
Headers | show |
Series | [1/9] rdisk: don't inherit autotools | expand |
diff --git a/meta-oe/recipes-extended/libx86-1/libx86-1_1.1.bb b/meta-oe/recipes-extended/libx86-1/libx86-1_1.1.bb index ae2714d7e7..57d629026e 100644 --- a/meta-oe/recipes-extended/libx86-1/libx86-1_1.1.bb +++ b/meta-oe/recipes-extended/libx86-1/libx86-1_1.1.bb @@ -24,4 +24,6 @@ COMPATIBLE_HOST = '(x86_64|i.86).*-linux' export LIBDIR = "${libdir}" export BACKEND = "x86emu" -inherit autotools-brokensep +do_install() { + oe_runmake 'destdir=${D}' install +}
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-oe/recipes-extended/libx86-1/libx86-1_1.1.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)