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 16:46:33 +0100 |
commit | a19fc8e19a6cc6885a1e0616b1f42cc49c8f2c9f (patch) | |
tree | 31ca49e603d4828abd083141dcf074c1de02f9f9 /meta/classes/qmake_base.bbclass | |
parent | 7b8a68cda7ef8186e834b39e73ee12a55b33f85b (diff) | |
download | openembedded-core-a19fc8e19a6cc6885a1e0616b1f42cc49c8f2c9f.tar.gz openembedded-core-a19fc8e19a6cc6885a1e0616b1f42cc49c8f2c9f.tar.bz2 openembedded-core-a19fc8e19a6cc6885a1e0616b1f42cc49c8f2c9f.zip |
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.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/qmake_base.bbclass')
-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 qmake_base_do_configure() { case ${QMAKESPEC} in - *linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi-oe-g++) + *linux-oe-g++|*linux-uclibc-oe-g++|*linux-gnueabi-oe-g++|*linux-uclibceabi-oe-g++|*linux-gnuspe-oe-g++|*linux-uclibcspe-oe-g++) ;; *-oe-g++) die Unsupported target ${TARGET_OS} for oe-g++ qmake spec |