aboutsummaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-mkv
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2016-07-27 16:37:49 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2016-07-29 11:01:01 +0200
commit26fbc9bf45d3cd28dc7a7e7dc013908a61631749 (patch)
treee4ff05f3b0f9627e03e12c35cb66a96b7f6155ec /meta-multimedia/recipes-mkv
parent8f4c447cc70039d0fb87a034bec7cc8be595cf47 (diff)
downloadmeta-openembedded-contrib-26fbc9bf45d3cd28dc7a7e7dc013908a61631749.tar.gz
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@gmail.com>
Diffstat (limited to 'meta-multimedia/recipes-mkv')
-rw-r--r--meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb2
1 files changed, 1 insertions, 1 deletions
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