From b11abed2461d0598e498ca3e59c039e4547e580c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Sat, 16 Feb 2019 22:47:55 +0100 Subject: [PATCH] mame: rework installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Andreas Müller --- recipes-emulators/mame/mame_0206.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/recipes-emulators/mame/mame_0206.bb b/recipes-emulators/mame/mame_0206.bb index 1354109..3c182a5 100644 --- a/recipes-emulators/mame/mame_0206.bb +++ b/recipes-emulators/mame/mame_0206.bb @@ -81,9 +81,7 @@ do_compile_prepend() { do_install() { # Note: Unstripped mame binary for armv7 is > 1GB!! install -d ${D}${bindir} - install mame ${D}${bindir}/ - install -d ${D}${libexecdir} for binary in \ castool \ chdman \ @@ -100,6 +98,6 @@ do_install() { unidasm \ ; \ do - install $binary ${D}${libexecdir}/ + install $binary ${D}${bindir}/ done }