diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2016-07-25 00:34:06 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-07-29 11:01:00 +0200 |
commit | f5da6714fa3380f4210c62031e742267c2d3223e (patch) | |
tree | d5c0007f47e2bd1c17bd20b14a3b0d9430a01128 /meta-oe/recipes-graphics | |
parent | 292d8f1082e343037cc91faacfe721fd9c5707f5 (diff) | |
download | meta-openembedded-f5da6714fa3380f4210c62031e742267c2d3223e.tar.gz |
x11vnc: fix do_patch failed
Since the following commit applied in bitbake:
--------
commit 2afcbfef2cd1ca568e5225884a8021df38ee3db0
Author: Ross Burton <ross.burton@intel.com>
Date: Thu Jul 14 19:56:22 2016 +0100
bitbake: build: don't use $B as the default cwd for functions
--------
We need to parse file with absolute path.
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics')
-rw-r--r-- | meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb index 98a0734bd..b047bc462 100644 --- a/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb +++ b/meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb | |||
@@ -29,6 +29,6 @@ PACKAGECONFIG[libvncserver] = "--with-system-libvncserver,--without-system-libvn | |||
29 | 29 | ||
30 | do_prepare_sources () { | 30 | do_prepare_sources () { |
31 | # Remove old libtool macros from acinclude.m4 | 31 | # Remove old libtool macros from acinclude.m4 |
32 | sed -i -e '/^# libtool.m4/q' acinclude.m4 | 32 | sed -i -e '/^# libtool.m4/q' ${S}/acinclude.m4 |
33 | } | 33 | } |
34 | do_patch[postfuncs] += "do_prepare_sources" | 34 | do_patch[postfuncs] += "do_prepare_sources" |