diff options
author | Xin Ouyang <Xin.Ouyang@windriver.com> | 2013-05-29 10:09:55 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-29 22:14:18 +0100 |
commit | c0b6f9bc3334a755810430acc1f23f1a9a7365dc (patch) | |
tree | 3e09abe9a3f7f06f45ad79c45e759eb78dbd46b3 /meta/classes/qmake_base.bbclass | |
parent | f543969c149f86e30fd408017377ee08a68a786b (diff) | |
download | poky-c0b6f9bc3334a755810430acc1f23f1a9a7365dc.tar.gz |
qmake_base.bbclass: Add linux-gnun32-oe-g++ to QMAKESPEC
For some mips targets, TARGET_OS is set to linux-gnun32, while
linux-gnun32-oe-g++ is not listed in the default QMAKESPEC list of
qmake in oe-core/wrlinux. This would cause build failures for qt
apps, so add a matching rule to fix this.
(From OE-Core rev: 70b75d506e6c4b46694b00d674df9d4a94140bd6)
Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.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 fa1b5f0000..52e7fb0ff8 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++|*linux-gnuspe-oe-g++|*linux-uclibcspe-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++|*linux-gnun32-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 |