pkgs/development/compilers/gcc-4.6: strip trailing whitespace

svn path=/nixpkgs/branches/stdenv-updates/; revision=32274
This commit is contained in:
Peter Simons 2012-02-14 14:42:56 +00:00
parent c81f618a34
commit 35a4593277

View File

@ -230,8 +230,8 @@ stdenv.mkDerivation ({
${if enableMultilib then "" else "--disable-multilib"}
${if enableShared then "" else "--disable-shared"}
${if ppl != null then "--with-ppl=${ppl}" else ""}
${if cloog != null then
"--with-cloog=${cloog} --enable-cloog-backend=isl"
${if cloog != null then
"--with-cloog=${cloog} --enable-cloog-backend=isl"
else ""}
${if langJava then
"--with-ecj-jar=${javaEcj} " +
@ -319,7 +319,7 @@ stdenv.mkDerivation ({
--target=${stdenv.cross.config}
'';
};
# Needed for the cross compilation to work
AR = "ar";