diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-15 20:44:24 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-07-22 00:01:49 +0200 |
commit | 7436210b4c4e172a2ef625cbf85db8babae2f98e (patch) | |
tree | f630b84af911a11ba1aff86cfeb1866bb8459cf0 /meta-oe/recipes-support/farsight | |
parent | 548560853579ef437762c1016353e8ad6c64cb45 (diff) | |
download | meta-openembedded-7436210b4c4e172a2ef625cbf85db8babae2f98e.tar.gz |
libnice: create ${S}/m4 directory before gtkdocize is called
* otherwise it fails with:
+ gtkdocize --docdir /OE/build/shr-core/tmp-eglibc/work/core2-64-oe-linux/libnice/0.0.13-r4/libnice-0.0.13
ln: target 'm4/' is not a directory: No such file or directory
cp: cannot create regular file 'm4/': Not a directory
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/farsight')
-rw-r--r-- | meta-oe/recipes-support/farsight/libnice_0.0.13.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb index 2d7cff3d4..711b6bdbf 100644 --- a/meta-oe/recipes-support/farsight/libnice_0.0.13.bb +++ b/meta-oe/recipes-support/farsight/libnice_0.0.13.bb | |||
@@ -23,6 +23,10 @@ FILES_${PN}-dev += "${libdir}/gstreamer-0.10/*.la" | |||
23 | FILES_${PN}-staticdev += "${libdir}/gstreamer-0.10/*.a" | 23 | FILES_${PN}-staticdev += "${libdir}/gstreamer-0.10/*.a" |
24 | FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" | 24 | FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" |
25 | 25 | ||
26 | do_configure_prepend() { | ||
27 | mkdir ${S}/m4 || true | ||
28 | } | ||
29 | |||
26 | do_compile_append() { | 30 | do_compile_append() { |
27 | for i in $(find ${S} -name "*.pc") ; do | 31 | for i in $(find ${S} -name "*.pc") ; do |
28 | sed -i -e s:${STAGING_DIR_TARGET}::g \ | 32 | sed -i -e s:${STAGING_DIR_TARGET}::g \ |