Skip to content

Commit

Permalink
SDL2: disable parallel building
Browse files Browse the repository at this point in the history
Example failure: https://hydra.nixos.org/build/63996552

(cherry picked from commit 80e8e55)
  • Loading branch information
vcunat authored and orivej committed Nov 17, 2017
1 parent a955f0b commit 020a666
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/libraries/SDL2/default.nix
Expand Up @@ -54,7 +54,9 @@ stdenv.mkDerivation rec {
# https://bugzilla.libsdl.org/show_bug.cgi?id=1431
dontDisableStatic = true;

enableParallelBuilding = true;
# /build/SDL2-2.0.7/src/video/wayland/SDL_waylandevents.c:41:10: fatal error:
# pointer-constraints-unstable-v1-client-protocol.h: No such file or directory
enableParallelBuilding = false;

# XXX: By default, SDL wants to dlopen() PulseAudio, in which case
# we must arrange to add it to its RPATH; however, `patchelf' seems
Expand Down

0 comments on commit 020a666

Please sign in to comment.