···31 for i in /usr /sw /opt /pkg; do
32 substituteInPlace ./setup.py --replace $i /no-such-path
33 done
34- '' + optionalString (stdenv ? gcc && stdenv.gcc.libc != null) ''
35 for i in Lib/plat-*/regen; do
36- substituteInPlace $i --replace /usr/include/ ${stdenv.gcc.libc}/include/
37 done
38 '' + optionalString stdenv.isCygwin ''
39 # On Cygwin, `make install' tries to read this Makefile.
···31 for i in /usr /sw /opt /pkg; do
32 substituteInPlace ./setup.py --replace $i /no-such-path
33 done
34+ '' + optionalString (stdenv ? cc && stdenv.cc.libc != null) ''
35 for i in Lib/plat-*/regen; do
36+ substituteInPlace $i --replace /usr/include/ ${stdenv.cc.libc}/include/
37 done
38 '' + optionalString stdenv.isCygwin ''
39 # On Cygwin, `make install' tries to read this Makefile.
···34 for i in /usr /sw /opt /pkg; do
35 substituteInPlace ./setup.py --replace $i /no-such-path
36 done
37- '' + optionalString (stdenv ? gcc && stdenv.gcc.libc != null) ''
38 for i in Lib/plat-*/regen; do
39- substituteInPlace $i --replace /usr/include/ ${stdenv.gcc.libc}/include/
40 done
41 '' + optionalString stdenv.isCygwin ''
42 # On Cygwin, `make install' tries to read this Makefile.
···34 for i in /usr /sw /opt /pkg; do
35 substituteInPlace ./setup.py --replace $i /no-such-path
36 done
37+ '' + optionalString (stdenv ? cc && stdenv.cc.libc != null) ''
38 for i in Lib/plat-*/regen; do
39+ substituteInPlace $i --replace /usr/include/ ${stdenv.cc.libc}/include/
40 done
41 '' + optionalString stdenv.isCygwin ''
42 # On Cygwin, `make install' tries to read this Makefile.