From 84fdd629fc3014be4bbfd976f56070daeca2a27d Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Sun, 20 Jul 2014 17:37:21 +0200 Subject: mkvtoolnix: inherit autotools-brokensep * even with fixed path to m4/ebml.m4 and fixed path to drake in ${S} it still fails with: | DEBUG: Executing shell function do_compile | rake aborted! | No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb) Signed-off-by: Martin Jansa --- meta-multimedia/recipes-mkv/mkvtoolnix/mkvtoolnix_5.9.0.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/meta-multimedia/recipes-mkv/mkvtoolnix/mkvtoolnix_5.9.0.bb b/meta-multimedia/recipes-mkv/mkvtoolnix/mkvtoolnix_5.9.0.bb index abb0e950d6..6c5be3a8bd 100644 --- a/meta-multimedia/recipes-mkv/mkvtoolnix/mkvtoolnix_5.9.0.bb +++ b/meta-multimedia/recipes-mkv/mkvtoolnix/mkvtoolnix_5.9.0.bb @@ -10,7 +10,7 @@ SRC_URI = "http://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-${PV}. SRC_URI[md5sum] = "033621461ef8eb922fc1366e0a9a6f16" SRC_URI[sha256sum] = "d913f531331c3332d2fb334c872ea19bfea7293dfedc4bf33ae7162e4efcbde1" -inherit autotools gettext +inherit autotools-brokensep gettext # make sure rb files are used from sysroot, not from host # ruby-1.9.3-always-use-i386.patch is doing target_cpu=`echo $target_cpu | sed s/i.86/i386/` @@ -31,9 +31,9 @@ do_configure_prepend() { # Yeah, no makefile do_compile() { - ./drake + ${S}/drake } do_install() { - ./drake install DESTDIR=${D} + ${S}/drake install DESTDIR=${D} } -- cgit v1.2.3-54-g00ecf