kumquat-buildroot/package/qt5/qt5base
Giulio Benetti 2800c4e7a1 package/qt5base: fix qmake parallel build
When configuring qt5base, qmake is built, but it's not built in parallel
mode. This is due to MAKEFLAGS having 2 dashes on its tail, so this:
MAKEFLAGS="$(MAKEFLAGS) -j$(PARALLEL_JOBS)"
expands in this(i.e. 5 njobs):
MAKEFLAGS="--no-print-directory -- -j5"
and -j5 gets ignored due to "--" preceeding -j5.
Double dashes are part of $(MAKEFLAGS) only when evaluated by shell.

Swap $(MAKEFLAGS) and -j$(PARALLEL_JOBS) to avoid having "--" before
-j$(PARALLEL_JOBS), this way -j$(PARALLEL_JOBS) won't be ignored by
./configure.

Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com>
Tested-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit a1c175cc9e)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2019-04-26 14:47:30 +02:00
..
5.6.3 package/qt5/qt5base: build Qt 5.6 with LibreSSL if present 2019-03-04 20:22:57 +01:00
5.11.3
Config.in package/qt5/qt5base: add BR2_PACKAGE_QT5BASE_OPENSSL 2019-03-04 21:13:21 +01:00
qmake.conf.in
qplatformdefs.h
qt5base.hash
qt5base.mk package/qt5base: fix qmake parallel build 2019-04-26 14:47:30 +02:00
qt.conf.in