treewide: Mass replace 'zlib}/lib' to refer the 'out' output

This commit is contained in:
Tuomas Tynkkynen
2016-01-24 09:30:24 +02:00
parent 0f4244f51f
commit ed7dbb46a8
15 changed files with 16 additions and 16 deletions

View File

@@ -142,7 +142,7 @@ stdenv.mkDerivation ({
} // (if langJava then {
postConfigure = ''
make configure-gcc
sed -i gcc/Makefile -e 's@^CFLAGS = .*@& -I${zlib}/include@ ; s@^LDFLAGS = .*@& -L${zlib}/lib@'
sed -i gcc/Makefile -e 's@^CFLAGS = .*@& -I${zlib}/include@ ; s@^LDFLAGS = .*@& -L${zlib.out}/lib@'
sed -i gcc/Makefile -e 's@^CFLAGS = .*@& -I${boehmgc}/include@ ; s@^LDFLAGS = .*@& -L${boehmgc.out}/lib -lgc@'
'';
} else {})