diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-20 17:37:21 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-22 00:02:00 +0200 |
commit | 84fdd629fc3014be4bbfd976f56070daeca2a27d (patch) | |
tree | 27840ed574882438d9ba9fe49864a53ad62e2f60 /meta-multimedia/recipes-mkv | |
parent | 3fa6063efb019af3b9f370ff78e001890056dc69 (diff) | |
download | meta-openembedded-84fdd629fc3014be4bbfd976f56070daeca2a27d.tar.gz |
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@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-mkv')
-rw-r--r-- | meta-multimedia/recipes-mkv/mkvtoolnix/mkvtoolnix_5.9.0.bb | 6 |
1 files 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}. | |||
10 | SRC_URI[md5sum] = "033621461ef8eb922fc1366e0a9a6f16" | 10 | SRC_URI[md5sum] = "033621461ef8eb922fc1366e0a9a6f16" |
11 | SRC_URI[sha256sum] = "d913f531331c3332d2fb334c872ea19bfea7293dfedc4bf33ae7162e4efcbde1" | 11 | SRC_URI[sha256sum] = "d913f531331c3332d2fb334c872ea19bfea7293dfedc4bf33ae7162e4efcbde1" |
12 | 12 | ||
13 | inherit autotools gettext | 13 | inherit autotools-brokensep gettext |
14 | 14 | ||
15 | # make sure rb files are used from sysroot, not from host | 15 | # make sure rb files are used from sysroot, not from host |
16 | # ruby-1.9.3-always-use-i386.patch is doing target_cpu=`echo $target_cpu | sed s/i.86/i386/` | 16 | # 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() { | |||
31 | 31 | ||
32 | # Yeah, no makefile | 32 | # Yeah, no makefile |
33 | do_compile() { | 33 | do_compile() { |
34 | ./drake | 34 | ${S}/drake |
35 | } | 35 | } |
36 | 36 | ||
37 | do_install() { | 37 | do_install() { |
38 | ./drake install DESTDIR=${D} | 38 | ${S}/drake install DESTDIR=${D} |
39 | } | 39 | } |