Fix evaluation on non-Linux platforms

This commit is contained in:
Eelco Dolstra 2012-09-21 15:29:05 -04:00
parent efbca84265
commit 1fffc94956

View File

@ -2,7 +2,7 @@
let
libc = stdenv.gcc.libc or "/usr";
libc = if stdenv.gcc.libc or null != null then stdenv.gcc.libc else "/usr";
in