diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-09-05 16:42:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-05 17:32:14 +0100 |
commit | 9d6630d1749486e38066650e1de5849c9524adbc (patch) | |
tree | 26c098b7f6fd7e3fd26851f92a502a6644618bae /meta | |
parent | 8d6ecfbe84f0e266be1a7b25225845352476e42c (diff) | |
download | poky-9d6630d1749486e38066650e1de5849c9524adbc.tar.gz |
classes/qmake_base: support linux-gnuspe/linux-uclibcspe TARGET_OS
Fix borrowed from OE-Classic. This should fix build failures during
do_configure of Qt applications with the p1022ds machine from
meta-fsl-ppc, for example.
(From OE-Core rev: a19fc8e19a6cc6885a1e0616b1f42cc49c8f2c9f)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/qmake_base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/qmake_base.bbclass b/meta/classes/qmake_base.bbclass index d1008b638b..fa1b5f0000 100644 --- a/meta/classes/qmake_base.bbclass +++ b/meta/classes/qmake_base.bbclass | |||
@@ -48,7 +48,7 @@ addtask generate_qt_config_file after do_patch before do_configure | |||
48 | 48 | ||
49 | qmake_base_do_configure() { | 49 | qmake_base_do_configure() { |
50 | case ${QMAKESPEC} in | 50 | case ${QMAKESPEC} in |
51 | *linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi-oe-g++) | 51 | *linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi-oe-g++|*linux-gnuspe-oe-g++|*linux-uclibcspe-oe-g++) |
52 | ;; | 52 | ;; |
53 | *-oe-g++) | 53 | *-oe-g++) |
54 | die Unsupported target ${TARGET_OS} for oe-g++ qmake spec | 54 | die Unsupported target ${TARGET_OS} for oe-g++ qmake spec |