diff options
author | Adriaan de Groot <groot@kde.org> | 2008-02-02 14:57:05 +0000 |
---|---|---|
committer | Adriaan de Groot <groot@kde.org> | 2008-02-02 14:57:05 +0000 |
commit | 8a87d51e236488bcb4ffd1e6a7ffaa75026ac102 (patch) | |
tree | f64198990e77996f64f6748502bb22f1962d0fdc | |
parent | c926f96b573c3a4182078603e9c37d7c375a442f (diff) | |
download | extra-cmake-modules-8a87d51e236488bcb4ffd1e6a7ffaa75026ac102.tar.gz extra-cmake-modules-8a87d51e236488bcb4ffd1e6a7ffaa75026ac102.tar.bz2 |
Even two jobs is problematic on FreeBSD - confirmed with Alex a month ago or so.
svn path=/trunk/KDE/kdelibs/; revision=769986
-rw-r--r-- | automoc/kde4automoc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/automoc/kde4automoc.cpp b/automoc/kde4automoc.cpp index da0d5457..4985d74b 100644 --- a/automoc/kde4automoc.cpp +++ b/automoc/kde4automoc.cpp @@ -314,7 +314,7 @@ void AutoMoc::generateMoc(const QString &sourceFile, const QString &mocFileName) // we don't want too many child processes #ifdef Q_OS_FREEBSD - static const int max_processes = 1; + static const int max_processes = 0; #else static const int max_processes = 10; #endif |