about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-30 09:36:16 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-30 09:51:14 +0000
commit6b4f0b5bf4541c2c4cab4239ff00526085267c36 (patch)
tree0d92e65561ab23e9e12c105ca5f066a534ab8d31 /pkgs
parentc8d822252b86022a71dcc4f0f48bc869ef446401 (diff)
downloadnixlib-6b4f0b5bf4541c2c4cab4239ff00526085267c36.tar
nixlib-6b4f0b5bf4541c2c4cab4239ff00526085267c36.tar.gz
nixlib-6b4f0b5bf4541c2c4cab4239ff00526085267c36.tar.bz2
nixlib-6b4f0b5bf4541c2c4cab4239ff00526085267c36.tar.lz
nixlib-6b4f0b5bf4541c2c4cab4239ff00526085267c36.tar.xz
nixlib-6b4f0b5bf4541c2c4cab4239ff00526085267c36.tar.zst
nixlib-6b4f0b5bf4541c2c4cab4239ff00526085267c36.zip
qt4: fix parallel building
qmake needs uic to extract dependency information from .ui files.  In -fast mode
qmake generates Makefiles for each subproject after the previous subproject is
built, and by the time it encounters subprojects with .ui files, uic is
available to provide dependency information.  In -no-fast mode qmake builds
subprojects in the same order, but generates all Makefiles beforehand, without
uic, and they miss dependencies.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/qt-4.x/4.8/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix
index 66a58dba32e2..369f328666da 100644
--- a/pkgs/development/libraries/qt-4.x/4.8/default.nix
+++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix
@@ -130,7 +130,7 @@ stdenv.mkDerivation rec {
 
   configureFlags =
     ''
-      -v -no-separate-debug-info -release -no-fast -confirm-license -opensource
+      -v -no-separate-debug-info -release -fast -confirm-license -opensource
 
       -${if stdenv.isFreeBSD then "no-" else ""}opengl -xrender -xrandr -xinerama -xcursor -xinput -xfixes -fontconfig
       -qdbus -${if cups == null then "no-" else ""}cups -glib -dbus-linked -openssl-linked