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