summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* qtwebengine: drop ↵HEADmasterMartin Jansa2019-02-142-51/+0
| | | | | | | | | | | | | 0002-chromium_overrides.cpp-Fix-build-with-plugins-and-oz.patch * with 5.12 it looks like it's not needed anymore, it causes following error instead: linking ../../lib/libQt5WebEngineCore.so.5.12.0 ../../../../git/src/3rdparty/chromium/content/browser/renderer_host/pepper/pepper_truetype_font_list_host.cc:79: error: undefined reference to 'content::GetFontFamilies_SlowBlocking(std::vector<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::allocator<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > > >*)' ../../../../git/src/3rdparty/chromium/content/browser/renderer_host/pepper/pepper_truetype_font_list_host.cc:93: error: undefined reference to 'content::GetFontsInFamily_SlowBlocking(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::vector<ppapi::proxy::SerializedTrueTypeFontDesc, std::allocator<ppapi::proxy::SerializedTrueTypeFontDesc> >*)' collect2: error: ld returned 1 exit status Makefile.core_module:74: recipe for target '../../lib/libQt5WebEngineCore.so.5.12.0' failed Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qwt-qt5: upgrade 6.1.3 -> 6.1.4Andreas Müller2019-02-141-2/+2
| | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
* qwt-qt5: Fix multilib installAndreas Müller2019-02-141-1/+5
| | | | | | | | | | | | | | ERROR: qwt-qt5-6.1.3-r0 do_package: QA Issue: qwt-qt5: Files/directories were installed but not shipped in any package: | /usr/lib/libqwt.so.6 | /usr/lib/libqwt.so.6.1 | /usr/lib/libqwt.so | /usr/lib/libqwt.so.6.1.3 | /usr/lib/pkgconfig | /usr/lib/pkgconfig/Qt5Qwt6.pc | Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
* qtwebengine: Fix build with clang/libc++ on aarch64/armKhem Raj2019-02-146-10/+199
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtbase: Export host compiler and linkerKhem Raj2019-02-141-0/+10
| | | | | | | | | | | | | | | | | | | | Certain portions of qtwebengine build involves building native tools using host compiler/linker, this however currently uses gcc and when we build with clang to compile the target pieces, chromium configures for clang and rightly so, but then does not have a way to define flags for host and target separately, and it ends up supplying same flags for both host and target builds, the trouble is that the options between clang and gcc are not always same in some cases, they dont understand each others options. So build starts to fail due to these errors about unknown cmdline options. This makes sure we inject CC_host, CXX_host, LD_host into qmake.conf so they can be used in such packages We use clang to do host builds when TOOLCHAIN = "clang" is used otherwise default to gcc as it was the case Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qt5-plugin-generic-vboxtouch: Fix build with clang/libc++Khem Raj2019-02-142-2/+42
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* maliit-framework,maliit-plugins: Fix build with libc++Khem Raj2019-02-144-1/+145
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtconnectivity: Fix build with clang/libc++Khem Raj2019-02-142-0/+28
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtwayland: workaround upstream bug: install missing headers manuallyAndreas Müller2019-02-141-0/+17
| | | | Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
* gstreamer1.0-plugins-good: fix qt5 dependencyMarco Felsch2019-02-081-9/+1
| | | | | | | | | | | | | | | | | | | | | | Commit 73f99f2 ("gstreamer1.0-plugins-{good,bad}: move the qt5 PACKAGECONFIG from bad to good bbappend") just copied the bbappend file without checking the dependencies. The qt5 plugin needs the gl plugin which was moved in gstreamer 1.14 from bad to base. So the pyhton() function checking the PACKAGECONFIG_GL isn't needed here, furthermore it causes bitbake errors: 0013: gl_packageconfig = d.getVar('PACKAGECONFIG_GL', expand=True) 0014: with open("/tmp/marcotest", "w") as f: 0015: print(gl_packageconfig, file=f) 0016: d.appendVar('PACKAGECONFIG', ' ' + gl_packageconfig) *** 0017:} Exception: TypeError: can only concatenate str (not "NoneType") to str The patch removes the python() function to fix this and adds the gstreamer1.0-plugins-base dependency to have access to the gl plugin. Signed-off-by: Marco Felsch <m.felsch@pengutronix.de>
* qtbase: Update the PACKAGECONFIG_KDE to enable moreAlistair Francis2019-02-081-1/+1
| | | | | | | Update PACKAGECONFIG_KDE to ensure that all required packages are enabled. Signed-off-by: Alistair Francis <alistair.francis@wdc.com>
* qtbase: fix incomplete recipe changes from previous commitMartin Jansa2019-01-123-7/+7
| | | | | | * the patches were renamed, but I forgot to amend the SRC_URI modifications Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtbase: Fix qtopcua issue on bigendian systemsKhem Raj2019-01-106-6/+37
| | | | | | | | See http://errors.yoctoproject.org/Errors/Details/213681/ Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwebkit: Disable JIT for mips64Khem Raj2019-01-101-0/+4
| | | | | | | | | | | It does not build with JIT git/Source/JavaScriptCore/assembler/MacroAssembler.h:64:2: error: #error "The MacroAssembler is not supported on this platform." 64 | #error "The MacroAssembler is not supported on this platform." | ^~~~~ Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtbase: replace the fix for gcc-4.8 with the one from upstreamupstream/jansa/master-5.12jansa/master-5.12Martin Jansa2018-12-247-59/+69
| | | | | | | | | | | | | | | | | | | * fixes: | In file included from ../include/QtCore/qendian.h:1:0, | from /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+13ed06640c-r0/git/src/corelib/codecs/qutfcodec.cpp:43: | ../include/QtCore/../../../git/src/corelib/global/qendian.h: In instantiation of �constexpr Float qbswapFloatHelper(Float) [with Float = qfloat16]�: | ../include/QtCore/../../../git/src/corelib/global/qendian.h:167:36: required from here | ../include/QtCore/../../../git/src/corelib/global/qendian.h:163:1: error: body of constexpr function �constexpr Float qbswapFloatHelper(Float) [with Float = qfloat16]� not a return-statement | } | ^ | ../include/QtCore/../../../git/src/corelib/global/qendian.h: In instantiation of �constexpr Float qbswapFloatHelper(Float) [with Float = float]�: | ../include/QtCore/../../../git/src/corelib/global/qendian.h:172:29: required from here | ../include/QtCore/../../../git/src/corelib/global/qendian.h:163:1: error: body of constexpr function �constexpr Float qbswapFloatHelper(Float) [with Float = float]� not a return-statement | ../include/QtCore/../../../git/src/corelib/global/qendian.h: In instantiation of �constexpr Float qbswapFloatHelper(Float) [with Float = double]�: | ../include/QtCore/../../../git/src/corelib/global/qendian.h:177:29: required from here | ../include/QtCore/../../../git/src/corelib/global/qendian.h:163:1: error: body of constexpr function �constexpr Float qbswapFloatHelper(Float) [with Float = double]� not a return-statement Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtbase: Fix build with gcc 4.8Khem Raj2018-12-2423-27/+79
| | | | | | | | | | | Fixes errors like In file included from ../include/QtCore/qendian.h:1:0, from TOPDIR/build/tmp/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+13ed06640c-r0/git/src/corelib/codecs/qutfcodec.cpp:43: ../include/QtCore/../../../git/src/corelib/global/qendian.h:165:61: error: redeclaration ‘constexpr T qbswap(T) [with T = qfloat16]’ differs in ‘constexpr’ Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwebengine: Fix build with musl/gcc9Khem Raj2018-12-2416-27/+127
| | | | | | | | Provide couple of patches to fix build with x86_64/musl and a new bug found lss via gcc9 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwebkit-examples: drop recipeMartin Jansa2018-12-232-72/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * it's not supported by upstream * it's broken again with 5.12.0: http://errors.yoctoproject.org/Errors/Build/74151/ make[3]: Entering directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/simpleselector' make[3]: *** No rule to make target 'QtWebKit/QWebView', needed by '.uic/ui_window.h'. Stop. make[3]: Leaving directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/simpleselector' ... make[3]: Entering directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/domtraversal' make[3]: *** No rule to make target 'QtWebKitWidgets/QWebView', needed by '.uic/ui_window.h'. Stop. make[3]: Leaving directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/domtraversal' ... make[3]: Entering directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/formextractor' make[3]: *** No rule to make target 'QtWebKit/QWebView', needed by '.uic/ui_formextractor.h'. Stop. make[3]: Leaving directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/formextractor' ... make[3]: Entering directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/previewer' make[3]: *** No rule to make target 'QtWebKit/QWebView', needed by '.uic/ui_previewer.h'. Stop. make[3]: Leaving directory 'TOPDIR/tmp-glibc/work/core2-64-oe-linux/qtwebkit-examples/5.12.0+gitAUTOINC+2d68492004-r0/build/examples/webkitwidgets/previewer' * nobody was interested in fixing it last time it got broken with 5.11 upgrade: https://patchwork.openembedded.org/patch/151399/ Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qttranslations, packagegroup-qt5-toolchain-target: drop qmlviewerMartin Jansa2018-12-232-7/+1
| | | | | | | | | | | | | | | | * it was removed from qttranslations in upstream commit: commit c49e22e0b3a48b67f481f7362b74d90e6596b60f Author: Kai Koehne <kai.koehne@qt.io> Date: Mon Dec 3 14:44:42 2018 +0100 Drop qtquick1 module qtquick1 has been removed from Qt in 5.6. The qtquick1 got removed from the supermodule in qt 5.11.2 (see change d60ef0b20247 in qt5.git). So it's high time to also remove the qtquick1 and qmlviewer translation logic from qttranslations. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwayland: revert one patch from 5.12 branch to make it compatible with ↵Martin Jansa2018-12-232-0/+562
| | | | | | 5.12.0 qtbase Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qt3d-runtime: drop patch resolved upstreamMartin Jansa2018-12-232-31/+0
| | | | | | | | | | | * resolved in upstream commit: commit 5651638d8a9d45af8ea6cdc71dc9b8b843103d2b Author: Samuli Piippo <samuli.piippo@qt.io> Date: Fri Oct 19 12:11:02 2018 +0300 Add missing include header Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qt5everywheredemo: add dependency on qtxmlpatternsMartin Jansa2018-12-231-1/+1
| | | | | | | | * after xmlpatterns PACKAGECONFIG was removed from qtdeclarative it fails with: | Project ERROR: Unknown module(s) in QT: xmlpatterns Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtconnectivity: drop patch resolved upstreamMartin Jansa2018-12-232-42/+0
| | | | | | | | | | | * resolved in upstream commit: commit 2a52a400d6692b4f42d955302dee651646664385 Author: Alex Blasche <alexander.blasche@qt.io> Date: Wed Aug 29 10:02:58 2018 +0200 Fix bluez config test failure on clang Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwebengine: update chromium musl patchsetSamuli Piippo2018-12-2320-54/+274
| | | | | Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtbase: add env variable for host bin suffixSamuli Piippo2018-12-221-9/+9
| | | | | | | * Env is needed for mingw support where host tools have .exe suffix. Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwebengine: include sources in the debug package, add x11 PACKAGECONFIGSamuli Piippo2018-12-221-1/+1
| | | | | | | | * Remove override for PACKAGE_DEBUG_SPLIT_STYLE so that source code for QtWebEngine is included in the debug package. Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* libqofono: add dependency on qtxmlpatternsMartin Jansa2018-12-221-1/+1
| | | | | | | * without qtxmlpatterns PACKAGECONFIG in qtdeclarative there is now: log.qt5-libqofono:ERROR: libqofono-0.92+gitrAUTOINC+6916cd030b-r0 do_package_qa: QA Issue: libqofono rdepends on qtxmlpatterns, but it isn't a build dependency, missing qtxmlpatterns in DEPENDS or PACKAGECONFIG? [build-deps] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtxmlpatterns: add qtdeclarative PACKAGECONFIGSamuli Piippo2018-12-211-0/+11
| | | | | Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtdeclarative: remove qtxmlpatterns PACKAGECONFIGSamuli Piippo2018-12-211-10/+1
| | | | | Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwayland: update PACKAGECONFIG optionsSamuli Piippo2018-12-211-2/+2
| | | | | Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtbase: update xinput PACKAGECONFIGMartin Jansa2018-12-211-2/+2
| | | | | | | | | | | * see: commit a692d7cd2804ead51aef8670c9fbb098c117ebf6 Author: Alexander Volkov <a.volkov@rusbitech.ru> Date: Tue Mar 6 16:02:54 2018 +0300 xcb: Use XCB instead of Xlib for XInput Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtbase: use v5.12.0 as baseMartin Jansa2018-12-2123-44/+76
| | | | | | | | | | | | * restore 0018-Fix-compile-issue-with-gcc-9.patch which is only in v5.12.1 * zlib detection got broken probably in: commit e80bf655e922e9864f8843b5e7bbb47019a6d95a Author: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Date: Thu Dec 7 19:30:07 2017 +0100 configure: verify header presence against sources Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qt5: upgrade to latest revision in 5.12Martin Jansa2018-12-2169-505/+160
| | | | | | | | | | | | | | | | | | | | | | | | * WIP * zlib temporarily disabled in qtbase-native, the configure fails too find it even when it is in RSS: docker-shr qemux86-64@ ~/build/oe-core $ find /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0 -name zlib\* /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/git/src/3rdparty/freetype/src/gzip/zlib.h /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/git/src/3rdparty/zlib.pri /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/git/src/3rdparty/zlib /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/git/src/3rdparty/zlib/src/zlib.h /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/git/src/3rdparty/zlib_dependency.pri /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/recipe-sysroot-native/usr/lib/pkgconfig/zlib.pc /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/recipe-sysroot-native/usr/include/zlib.h /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/recipe-sysroot-native/sysroot-providers/zlib-native /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/recipe-sysroot-native/installeddeps/zlib-native /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/recipe-sysroot-native/installeddeps/zlib-native.2dcdd26b684916aff89d13cb1c919939 /OE/build/oe-core/tmp-glibc/work/x86_64-linux/qtbase-native/5.12.0+gitAUTOINC+7fc427ba23-r0/recipe-sysroot-native/installeddeps/zlib-native.complete ERROR: Feature 'system-zlib' was enabled, but the pre-condition 'libs.zlib' failed. * fixes #136 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qt5: upgrade to latest revision in 5.12Martin Jansa2018-12-2026-501/+77
| | | | | | | * WIP: only qtbase now * fixes #136 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qt5-plugin-generic-vboxtouch: fix segfaultthud-nextMartin Jansa2018-12-202-0/+76
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtwebengine: refresh .patch files, meta-qt5/qt* repos and their tags in recipesMartin Jansa2018-12-2023-111/+111
| | | | | | * in preparation for rebase on 5.12 #136 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qt5: refresh .patch files, meta-qt5/qt* repos and their tags in recipesMartin Jansa2018-12-2039-80/+76
| | | | | | * in preparation for rebase on 5.12 #136 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* libconnman-qt5: Don't harcode libdir to fix multilib buildAndreas Oberritter2018-12-202-0/+26
| | | | | Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qtbase: Fix build with gcc9Khem Raj2018-12-204-0/+37
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtbase: Consider clang when computing QMAKE_CXX.COMPILER_MACROSKhem Raj2018-12-204-0/+44
| | | | | | | Helps in compiling qtapps with clang Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* qt5-creator: Enable clang plugin support when clang is used as toolchainKhem Raj2018-12-201-1/+9
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtwebkit: Fix build with clangKhem Raj2018-12-201-0/+2
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* maliit: Disable testsKhem Raj2018-12-202-0/+7
| | | | | | | | | | | | | They do not build reliably, especially when using clang Fixes | ../../../recipe-sysroot/usr/include/QtTest/qtestcase.h:340:34: error: invalid operands to binary expression ('const MImServerCommonOptions' and 'const MImServerCommonOptions') | return compare_helper(t1 == t2, "Compared values are not the same", | ~~ ^ ~~ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtbase: Drop QMAKE_WAYLAND_SCANNER from clang mkspecs fileKhem Raj2018-12-201-10/+7
| | | | | | | | | This is to complete the fix that was sent last year to remove QMAKE_WAYLAND_SCANNER https://patchwork.openembedded.org/patch/145672/ Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtconnectivity: Ignore -Waddress-of-temporary when using clangKhem Raj2018-12-202-0/+42
| | | | | | Helps in making bluez detection succeed Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qtbase: Fix build with clang/muslKhem Raj2018-12-204-0/+33
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* qt5: upgrade to 5.11.3Mikko Gronoff2018-12-2044-98/+83
| | | | Signed-off-by: Mikko Gronoff <mikko.gronoff@qt.io>
* qtwebengine: Configure Ninja to honor PARALLEL_MAKEKai Ruhnau2018-12-111-0/+1
| | | | | | Fixes #137 Signed-off-by: Kai Ruhnau <kai.ruhnau@target-sg.com>
* qmllive: add new recipeSeokha Ko2018-12-071-0/+18
| | | | | | | qmlLive is a live reloader environment for rapid UI development Change-Id: Icc29a45ed488a95257625122107b83cbe746c755 Signed-off-by: Seokha Ko <sukdo399@daum.net>
* python-pyqt5: MAKEFLAGS pass -j 1 via MAKEFLAGS during do_installKhem Raj2018-11-291-1/+1
| | | | | | | | The fix to reset PARALLEL_MAKEINST isnt enough here because qmake bbclass creates EXTRA_OEMAKE where it passes the -jX via MAKEFLAGS its better to set MAKEFLAGS in do_install to undo that effect Signed-off-by: Khem Raj <raj.khem@gmail.com>