Fixed a /bin/echo reference

svn path=/nixpkgs/trunk/; revision=8995
This commit is contained in:
Wouter den Breejen
2007-07-18 10:32:20 +00:00
parent 4b33c46279
commit eb1bfefa91
2 changed files with 14 additions and 1 deletions
+2 -1
View File
@@ -7,7 +7,8 @@ stdenv.mkDerivation {
sha256 = "1x1s0h1gf4hxh6xi6vq336sz8zsh4hvnsslc7607z41l82xrqjrl";
};
buildInputs = [coreutils];
patches = [./findutils-path.patch]
patches = [ ./findutils-path.patch ./change_echo_path.patch ]
# Note: the dietlibc patch is just to get findutils to compile.
# The locate command probably won't work though.
++ stdenv.lib.optional (stdenv ? isDietLibC) ./dietlibc-hack.patch;