Skip to content

Commit

Permalink
cpython: make configd optional (for sandboxed darwin bootstraps)
Browse files Browse the repository at this point in the history
  • Loading branch information
copumpkin committed Nov 9, 2017
1 parent 48a34be commit 0f75e6b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -128,7 +128,7 @@ let
++ optional hostPlatform.isCygwin expat
++ [ db gdbm ncurses sqlite readline ]
++ optionals x11Support [ tcl tk xlibsWrapper libX11 ]
++ optionals stdenv.isDarwin [ CF configd ];
++ optionals stdenv.isDarwin ([ CF ] ++ optional (configd != null) configd);

mkPaths = paths: {
C_INCLUDE_PATH = makeSearchPathOutput "dev" "include" paths;
Expand Down

0 comments on commit 0f75e6b

Please sign in to comment.