diff options
author | Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de> | 2013-01-07 13:58:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-01-07 13:50:39 +0000 |
commit | 41a15a9af9c8fe8f4ca9a54808f209ec2379ac2c (patch) | |
tree | 1b5d8382fe2ee4fe36253ac5ab45760077334952 /meta/classes | |
parent | 1a277565b738ef0a920eb960c78f553051166934 (diff) | |
download | poky-41a15a9af9c8fe8f4ca9a54808f209ec2379ac2c.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
(From OE-Core rev: 7d64232f370817c0536412589bd4ed612f214e18)
Signed-off-by: Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/image.bbclass | 2 |
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() { | |||
371 | if [ "$GLOBS" != "" ] ; then | 371 | if [ "$GLOBS" != "" ] ; then |
372 | # Use the magic script to do all the work for us :) | 372 | # Use the magic script to do all the work for us :) |
373 | : > ${WORKDIR}/complementary_pkgs.txt | 373 | : > ${WORKDIR}/complementary_pkgs.txt |
374 | for vendor in ${TARGET_VENDOR} ${MULTILIB_VENDORS} ; do | 374 | for vendor in '${TARGET_VENDOR}' ${MULTILIB_VENDORS} ; do |
375 | oe-pkgdata-util glob ${TMPDIR}/pkgdata $vendor-${TARGET_OS} ${WORKDIR}/installed_pkgs.txt "$GLOBS" >> ${WORKDIR}/complementary_pkgs.txt | 375 | oe-pkgdata-util glob ${TMPDIR}/pkgdata $vendor-${TARGET_OS} ${WORKDIR}/installed_pkgs.txt "$GLOBS" >> ${WORKDIR}/complementary_pkgs.txt |
376 | done | 376 | done |
377 | 377 | ||