* Don't use the subpath operator (~) anymore, it's subsumed by normal
concatenation (+). svn path=/nixpkgs/trunk/; revision=6080
This commit is contained in:
@@ -210,10 +210,10 @@ rec {
|
||||
inherit (stdenvLinuxBoot2Pkgs) binutils;
|
||||
glibc = stdenvLinuxGlibc;
|
||||
gcc = stdenvLinuxBoot2Pkgs.gcc.gcc;
|
||||
shell = stdenvLinuxBoot3Pkgs.bash ~ /bin/sh;
|
||||
shell = stdenvLinuxBoot3Pkgs.bash + /bin/sh;
|
||||
};
|
||||
|
||||
shell = stdenvLinuxBoot3Pkgs.bash ~ /bin/sh;
|
||||
shell = stdenvLinuxBoot3Pkgs.bash + /bin/sh;
|
||||
|
||||
extraAttrs = {
|
||||
curl = stdenvLinuxBoot3Pkgs.realCurl;
|
||||
|
||||
@@ -17,10 +17,10 @@ import ../generic {
|
||||
else
|
||||
pkgs.binutils;
|
||||
gcc = if stdenv.isDarwin then pkgs.gccApple.gcc else pkgs.gcc.gcc;
|
||||
shell = pkgs.bash ~ /bin/sh;
|
||||
shell = pkgs.bash + /bin/sh;
|
||||
};
|
||||
|
||||
shell = pkgs.bash ~ /bin/sh;
|
||||
shell = pkgs.bash + /bin/sh;
|
||||
|
||||
extraAttrs = {
|
||||
curl = pkgs.realCurl;
|
||||
|
||||
Reference in New Issue
Block a user