diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2015-11-06 14:08:14 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-11-11 13:24:53 +0100 |
commit | 768cd0229e1bf21a0475f1c90fde52ec7de5d0f7 (patch) | |
tree | 861ae4bf49447ad1a375664fb74ae5901eb50e78 | |
parent | c44294bb8b2ad3035d15c02b751916993c54eccd (diff) | |
download | meta-qt5-768cd0229e1bf21a0475f1c90fde52ec7de5d0f7.tar.gz |
qtwebengine: fix QMAKE_AR variable
* OE_QMAKE_AR is only the tool, qtbase and other modules add correct
parameters to it in linux-oe-g++ platform:
recipes-qt/qt5/qtbase/0001-Add-linux-oe-g-platform.patch:+QMAKE_AR = $(OE_QMAKE_AR) cqs
but here it was missing "cqs" causing following error at the end of
qtwebengine build:
i586-oe-linux-ar Release/libqtwebenginecoreapi.a .obj/qwebenginecookiestoreclient.o .obj/qwebengineurlrequestinfo.o .obj/qwebengineurlrequestjob.o .obj/qwebengineurlschemehandler.o .obj/moc_qwebenginecookiestoreclient.o .obj/moc_qwebengineurlrequestinterceptor.o .obj/moc_qwebengineurlrequestjob.o .obj/moc_qwebengineurlschemehandler.o
i586-oe-linux-ar: invalid option -- 'R'
Usage: i586-oe-linux-ar [emulation options] [-]{dmpqrstx}[abcDfilMNoPsSTuvV] [--plugin <name>] [member-name] [count] archive-file file...
...
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/qtwebengine_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qtwebengine_git.bb b/recipes-qt/qt5/qtwebengine_git.bb index dc19f60e..cf6d1cf3 100644 --- a/recipes-qt/qt5/qtwebengine_git.bb +++ b/recipes-qt/qt5/qtwebengine_git.bb | |||
@@ -59,7 +59,7 @@ do_configure() { | |||
59 | QMAKE_LINK="${OE_QMAKE_LINK}" \ | 59 | QMAKE_LINK="${OE_QMAKE_LINK}" \ |
60 | QMAKE_CFLAGS="${OE_QMAKE_CFLAGS}" \ | 60 | QMAKE_CFLAGS="${OE_QMAKE_CFLAGS}" \ |
61 | QMAKE_CXXFLAGS="${OE_QMAKE_CXXFLAGS}" \ | 61 | QMAKE_CXXFLAGS="${OE_QMAKE_CXXFLAGS}" \ |
62 | QMAKE_AR="${OE_QMAKE_AR}" \ | 62 | QMAKE_AR="${OE_QMAKE_AR} cqs" \ |
63 | -after ${EXTRA_QMAKEVARS_POST} | 63 | -after ${EXTRA_QMAKEVARS_POST} |
64 | } | 64 | } |
65 | 65 | ||