aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2016-07-25 00:34:06 -0400
committerMartin Jansa <Martin.Jansa@gmail.com>2016-07-29 11:01:00 +0200
commitf5da6714fa3380f4210c62031e742267c2d3223e (patch)
treed5c0007f47e2bd1c17bd20b14a3b0d9430a01128 /meta-oe
parent292d8f1082e343037cc91faacfe721fd9c5707f5 (diff)
downloadmeta-openembedded-contrib-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')
-rw-r--r--meta-oe/recipes-graphics/x11vnc/x11vnc_0.9.13.bb2
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 98a0734bdc..b047bc4628 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
do_prepare_sources () {
# Remove old libtool macros from acinclude.m4
- sed -i -e '/^# libtool.m4/q' acinclude.m4
+ sed -i -e '/^# libtool.m4/q' ${S}/acinclude.m4
}
do_patch[postfuncs] += "do_prepare_sources"