From 26fbc9bf45d3cd28dc7a7e7dc013908a61631749 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 27 Jul 2016 16:37:49 +0200 Subject: 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 --- 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 b756a39249..bbbe563889 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 -- cgit 1.2.3-korg