瀏覽代碼

libx86-1: 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>
Ross Burton 2 月之前
父節點
當前提交
7b4314bc72
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      meta-oe/recipes-extended/libx86-1/libx86-1_1.1.bb

+ 3 - 1
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
+}