3
0
Fork 0
forked from mirrors/nixpkgs

lsof-4.89 : change 'stdenv.libc' to 'stdenv.cc.libc'

This commit is contained in:
Ji-Haeng Huh 2016-10-06 15:27:29 +02:00
parent b150da5755
commit 86dc8ad0fd

View file

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
configurePhase = ''
# Stop build scripts from searching global include paths
export LSOF_INCLUDE=${stdenv.libc}/include
export LSOF_INCLUDE=${stdenv.cc.libc}/include
./Configure -n ${if stdenv.isDarwin then "darwin" else "linux"}
'';