[oe-commits] [meta-openembedded] 40/44: libebml: fix do_unpack failure

git at git.openembedded.org git at git.openembedded.org
Wed Jul 27 14:46:58 UTC 2016


martin_jansa pushed a commit to branch master-next
in repository meta-openembedded.

commit 8984206deba42edaae01bbea9608714d921b2f84
Author: Martin Jansa <Martin.Jansa at gmail.com>
AuthorDate: Wed Jul 27 16:37:49 2016 +0200

    libebml: fix do_unpack failure
    
    | DEBUG: Executing shell function dos2unix
    | /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/libebml/1.3.0-r0/temp/run.dos2unix.30265:104:
      /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/libebml/1.3.0-r0/temp/run.dos2unix.30265:cannot open make/*/Makefile: No such file
    | WARNING: exit code 2 from a shell command.
    | ERROR: Function failed: dos2unix (log file is located at
    
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb b/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
index b756a39..bbbe563 100644
--- a/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
+++ b/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
@@ -14,7 +14,7 @@ do_unpack[postfuncs] += "dos2unix"
 
 dos2unix () {
     cr="$(printf '\r')"
-    for f in make/*/Makefile; do
+    for f in ${S}/make/*/Makefile; do
         tr -d "$cr" <"$f" >"$f.new" && \
             mv "$f.new" "$f"
     done

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list