diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2017-10-05 17:16:11 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-09 12:33:10 +0000 |
commit | a4da3957f4577f9826c73e1d23bcffe9ee96a7d4 (patch) | |
tree | 7b81f3ec9b69fc19b3200238bcd7306530e63f40 | |
parent | afd20828521332a398a92cc03fb12ea9ec1de33a (diff) | |
download | openembedded-core-a4da3957f4577f9826c73e1d23bcffe9ee96a7d4.tar.gz openembedded-core-a4da3957f4577f9826c73e1d23bcffe9ee96a7d4.tar.bz2 openembedded-core-a4da3957f4577f9826c73e1d23bcffe9ee96a7d4.zip |
gtk-doc.bbclass: correctly make the list of directories with shared libraries
Previously it was working only if only one shared library was found, and
broke when there were several.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
-rw-r--r-- | meta/classes/gtk-doc.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/gtk-doc.bbclass b/meta/classes/gtk-doc.bbclass index 906ce7854a..5201c7151c 100644 --- a/meta/classes/gtk-doc.bbclass +++ b/meta/classes/gtk-doc.bbclass @@ -48,7 +48,7 @@ do_compile_prepend_class-target () { # which may then get deleted (or their dependencies) and potentially segfault export GIO_MODULE_DIR=${STAGING_LIBDIR}/gio/modules-dummy -GIR_EXTRA_LIBS_PATH=\`find ${B} -name *.so -printf %h| tr '\n' ':'\`\$GIR_EXTRA_LIBS_PATH +GIR_EXTRA_LIBS_PATH=\`find ${B} -name *.so -printf "%h\n"|sort|uniq| tr '\n' ':'\`\$GIR_EXTRA_LIBS_PATH GIR_EXTRA_LIBS_PATH=\`find ${B} -name .libs| tr '\n' ':'\`\$GIR_EXTRA_LIBS_PATH if [ -d ".libs" ]; then |