diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-12-11 15:17:17 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-12-11 15:18:36 +0100 |
commit | 0ff55f9d77af987236796d3594de63d6903fa15f (patch) | |
tree | 44962233d82fb43e7677d54bcf9b2368d2225ac3 /gnu/packages/web.scm | |
parent | 1ce6f33b0c085940af29dc17e0f64db0a1dbaa99 (diff) | |
download | gnu-guix-0ff55f9d77af987236796d3594de63d6903fa15f.tar gnu-guix-0ff55f9d77af987236796d3594de63d6903fa15f.tar.gz |
gnu: fcgi: Disable parallel building.
* gnu/packages/web.scm (fcgi)[arguments]: Disable parallel building.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 3fa70980d7..5454f57dbe 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -219,6 +219,8 @@ and as a proxy to reduce the load on back-end HTTP or mail servers.") (patches (search-patches "fcgi-2.4.0-poll.patch" "fcgi-2.4.0-gcc44-fixes.patch")))) (build-system gnu-build-system) + ;; Parallel building is not supported. + (arguments `(#:parallel-build? #f)) (home-page "http://www.fastcgi.com") (synopsis "Language-independent, high-performant extension to CGI") (description "FastCGI is a language independent, scalable extension to CGI |