about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-26 18:10:59 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-01-26 18:10:59 +0000
commit64f1191313c9df006e7f09b2fe574ea88c86f195 (patch)
treede492894ac0abcad5c7329d914c405f601a0a265 /pkgs/build-support
parent0d88060fb65663d2df03f096f3195f716343dd3d (diff)
* Fix Perl on FreeBSD.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19685
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/gcc-wrapper/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/gcc-wrapper/default.nix b/pkgs/build-support/gcc-wrapper/default.nix
index 87b2b097659a9..87557bb47795b 100644
--- a/pkgs/build-support/gcc-wrapper/default.nix
+++ b/pkgs/build-support/gcc-wrapper/default.nix
@@ -6,8 +6,8 @@
 # variables so that the compiler and the linker just "work".
 
 { name ? "", stdenv, nativeTools, nativeLibc, nativePrefix ? ""
-, gcc ? null, libc ? null, binutils ? null, coreutils ? null, shell ? "",
-zlib ? null
+, gcc ? null, libc ? null, binutils ? null, coreutils ? null, shell ? ""
+, zlib ? null
 }:
 
 assert nativeTools -> nativePrefix != "";