diff options
author | Greg Hogan <code@greghogan.com> | 2025-07-23 15:32:16 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 14:45:11 +0000 |
commit | 8ca3bf5a8b87971ef3d9996dcefbf10fc1871c0c (patch) | |
tree | f580705b4c99696e4bf8c873b3b2d2dd25c4563b | |
parent | ca95457b128d45ce7585dd44a2f4d58f2b7751d5 (diff) |
gnu: Disable parallel build.
* gnu/packages/graphics.scm (directfb)[arguments]: Disable parallel
build.
Change-Id: I2873b4f65d0ae8135ceef35907c0c9fc73b021dc
-rw-r--r-- | gnu/packages/graphics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 25fe072936..57ca8909af 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -205,7 +205,8 @@ framebuffer graphics, audio output and input event.") (base32 "0bs3yzb7hy3mgydrj8ycg7pllrd2b6j0gxj596inyr7ihssr3i0y")))) (build-system gnu-build-system) (arguments - `(#:configure-flags + `(#:parallel-build? #f + #:configure-flags '("CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types") #:phases (modify-phases %standard-phases |