summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>2013-01-07 13:58:31 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-07 13:39:58 +0000
commit7d64232f370817c0536412589bd4ed612f214e18 (patch)
treef6677b4985464d7cf4976bf43cc6c74c907b0648 /meta
parentaa2d9049a9a0f73123bf3d7e9221552ff49dab8a (diff)
downloadopenembedded-core-contrib-7d64232f370817c0536412589bd4ed612f214e18.tar.gz
image.bbclass: quote TARGET_VENDOR
The buildsystem does not install locale files anymore, when TARGET_VENDOR is empty. This regression was introduced by ff01518c6667e1b6e87df4e5a435a701d0f38fa7 Signed-off-by: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/image.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index d3a416d371..e49468949e 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -371,7 +371,7 @@ rootfs_install_complementary() {
if [ "$GLOBS" != "" ] ; then
# Use the magic script to do all the work for us :)
: > ${WORKDIR}/complementary_pkgs.txt
- for vendor in ${TARGET_VENDOR} ${MULTILIB_VENDORS} ; do
+ for vendor in '${TARGET_VENDOR}' ${MULTILIB_VENDORS} ; do
oe-pkgdata-util glob ${TMPDIR}/pkgdata $vendor-${TARGET_OS} ${WORKDIR}/installed_pkgs.txt "$GLOBS" >> ${WORKDIR}/complementary_pkgs.txt
done