diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2010-12-22 18:14:58 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-23 16:13:53 +0000 |
commit | 6a3b7c65e92954f4b461294e67e69803ed28f829 (patch) | |
tree | 74186a6b5bd06a53bdb182295bc6763932246257 | |
parent | b3a195d1e85feeccb3c9c448bbd0384c9cac4fb8 (diff) | |
download | poky-6a3b7c65e92954f4b461294e67e69803ed28f829.tar.gz |
qmake2.bbclass: add space to end of DEPENDS_prepend
There needs to be a space at the end of DEPENDS_prepend or otherwise it can
collide with the contents of DEPENDS. The OE version of this file has this.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r-- | meta/classes/qmake2.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/qmake2.bbclass b/meta/classes/qmake2.bbclass index e6810260f0..37721898d6 100644 --- a/meta/classes/qmake2.bbclass +++ b/meta/classes/qmake2.bbclass | |||
@@ -3,7 +3,7 @@ | |||
3 | # | 3 | # |
4 | inherit qmake_base | 4 | inherit qmake_base |
5 | 5 | ||
6 | DEPENDS_prepend = "qt4-tools-native" | 6 | DEPENDS_prepend = "qt4-tools-native " |
7 | 7 | ||
8 | export QMAKESPEC = "${STAGING_DATADIR}/qt4/mkspecs/${TARGET_OS}-oe-g++" | 8 | export QMAKESPEC = "${STAGING_DATADIR}/qt4/mkspecs/${TARGET_OS}-oe-g++" |
9 | export OE_QMAKE_UIC = "${STAGING_BINDIR_NATIVE}/uic4" | 9 | export OE_QMAKE_UIC = "${STAGING_BINDIR_NATIVE}/uic4" |