diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-07-27 16:37:49 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-07-29 11:01:01 +0200 |
commit | 26fbc9bf45d3cd28dc7a7e7dc013908a61631749 (patch) | |
tree | e4ff05f3b0f9627e03e12c35cb66a96b7f6155ec /meta-multimedia | |
parent | 8f4c447cc70039d0fb87a034bec7cc8be595cf47 (diff) | |
download | meta-openembedded-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')
-rw-r--r-- | meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb | 2 |
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 b756a3924..bbbe56388 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" | |||
14 | 14 | ||
15 | dos2unix () { | 15 | dos2unix () { |
16 | cr="$(printf '\r')" | 16 | cr="$(printf '\r')" |
17 | for f in make/*/Makefile; do | 17 | for f in ${S}/make/*/Makefile; do |
18 | tr -d "$cr" <"$f" >"$f.new" && \ | 18 | tr -d "$cr" <"$f" >"$f.new" && \ |
19 | mv "$f.new" "$f" | 19 | mv "$f.new" "$f" |
20 | done | 20 | done |