[oe-commits] Martin Jansa : mkvtoolnix: inherit autotools-brokensep

git at git.openembedded.org git at git.openembedded.org
Mon Jul 21 22:04:30 UTC 2014


Module: meta-openembedded.git
Branch: master
Commit: 84fdd629fc3014be4bbfd976f56070daeca2a27d
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=84fdd629fc3014be4bbfd976f56070daeca2a27d

Author: Martin Jansa <Martin.Jansa at gmail.com>
Date:   Sun Jul 20 17:37:21 2014 +0200

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 <Martin.Jansa at gmail.com>

---

 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 abb0e95..6c5be3a 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}
 }



More information about the Openembedded-commits mailing list