3
0
Fork 0
forked from mirrors/nixpkgs

Use gnumakeNix' instead of gnumake' in `stdenv'.

svn path=/nixpkgs/branches/stdenv-updates/; revision=13056
This commit is contained in:
Ludovic Courtès 2008-10-13 09:06:04 +00:00
parent 64a6c823fc
commit 36debce744
4 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@
pkgs.gnutar
pkgs.gzip
pkgs.bzip2
pkgs.gnumake
pkgs.gnumakeNix
pkgs.bash
pkgs.patch
pkgs.replace

View file

@ -217,7 +217,7 @@ rec {
inherit (stdenvLinuxBoot2Pkgs) binutils /* gcc */ glibc;
inherit (stdenvLinuxBoot3Pkgs)
gzip bzip2 bash coreutils diffutils findutils gawk
gnumake gnused gnutar gnugrep patch patchelf
gnumakeNix gnused gnutar gnugrep patch patchelf
attr acl;
};
};

View file

@ -10,7 +10,7 @@ let
# dietlibc.
pkgsToRemove =
[ "binutils" "gcc" "coreutils" "findutils" "diffutils" "gnused" "gnugrep"
"gawk" "gnutar" "gzip" "bzip2" "gnumake" "bash" "patch" "patchelf"
"gawk" "gnutar" "gzip" "bzip2" "gnumakeNix" "bash" "patch" "patchelf"
];
pkgsDiet = import ../../top-level/all-packages.nix {
@ -28,7 +28,7 @@ let
inherit (pkgsDiet)
coreutils diffutils gnugrep
gzip bzip2 gnumake bash patch binutils curl;
gzip bzip2 gnumakeNix bash patch binutils curl;
findutils = pkgsDiet.findutils4227; # 4.2.28 is broken

View file

@ -150,7 +150,7 @@ rec {
pkgs.gnutar
pkgs.gzip
pkgs.bzip2
pkgs.gnumake
pkgs.gnumakeNix
pkgs.bash
pkgs.patch
*/