[oe-commits] Enrico Scholz : image.bbclass: quote TARGET_VENDOR

git at git.openembedded.org git at git.openembedded.org
Mon Jan 7 13:52:48 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 7d64232f370817c0536412589bd4ed612f214e18
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=7d64232f370817c0536412589bd4ed612f214e18

Author: Enrico Scholz <enrico.scholz at informatik.tu-chemnitz.de>
Date:   Mon Jan  7 13:58:31 2013 +0100

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 at informatik.tu-chemnitz.de>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 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 d3a416d..e494689 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
 





More information about the Openembedded-commits mailing list