* Oops, the bootstrap tools contained an impure gzip/gunzip.

* To prevent this kind of thing, check that all tools are statically
  linked.
* Use findutils 4.2.27, 4.2.28 doesn't build with dietlibc.

svn path=/nixpkgs/trunk/; revision=6881
This commit is contained in:
Eelco Dolstra
2006-10-27 22:50:58 +00:00
parent de25bee83d
commit c37304db96
7 changed files with 41 additions and 26 deletions
+6 -4
View File
@@ -25,8 +25,10 @@ let
builder = ./make-bootstrap-tools.sh;
inherit (pkgsDiet)
coreutils findutils diffutils gnugrep
coreutils diffutils gnugrep
gzip bzip2 gnumake bash patch binutils;
findutils = pkgsDiet.findutils4227; # 4.2.28 is broken
gnused = pkgsDiet.gnused412; # 4.1.5 gives "Memory exhausted" errors
@@ -35,8 +37,8 @@ let
gnutar =
# Tar seems to be broken on dietlibc on x86_64.
if pkgs.stdenv.system == "i686-linux"
then pkgsDiet.gnutar
if pkgs.stdenv.system != "x86_64-linux"
then pkgsDiet.gnutar151 # 1.16 is broken
else pkgsStatic.gnutar;
gawk =
@@ -63,4 +65,4 @@ let
allowedReferences = [];
};
in generator.gnutar
in generator