* Binutils updated to 2.15 (required for glibc 2.3.3).
svn path=/nixpkgs/trunk/; revision=1440
This commit is contained in:
parent
c443a170fb
commit
54c7304dbe
@ -1,11 +1,12 @@
|
|||||||
{stdenv, fetchurl, noSysDirs}:
|
{stdenv, fetchurl, noSysDirs}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "binutils-2.14";
|
name = "binutils-2.15";
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = ftp://ftp.nl.net/pub/gnu/binutils/binutils-2.14.tar.bz2;
|
url = http://ftp.gnu.org/gnu/binutils/binutils-2.15.tar.bz2;
|
||||||
md5 = "2da8def15d28af3ec6af0982709ae90a";
|
md5 = "624e6b74983ac6b2960edaf2d522ca58";
|
||||||
};
|
};
|
||||||
|
patches = [./no-lex.patch];
|
||||||
inherit noSysDirs;
|
inherit noSysDirs;
|
||||||
}
|
}
|
||||||
|
20
pkgs/development/tools/misc/binutils/no-lex.patch
Normal file
20
pkgs/development/tools/misc/binutils/no-lex.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
diff -rc binutils-orig/ld/configure binutils-2.15/ld/configure
|
||||||
|
*** binutils-orig/ld/configure 2003-04-24 14:36:07.000000000 +0200
|
||||||
|
--- binutils-2.15/ld/configure 2004-09-18 15:18:52.000000000 +0200
|
||||||
|
***************
|
||||||
|
*** 4414,4420 ****
|
||||||
|
|
||||||
|
test -n "$LEX" && break
|
||||||
|
done
|
||||||
|
! test -n "$LEX" || LEX=""$missing_dir/missing flex""
|
||||||
|
|
||||||
|
# Extract the first word of "flex", so it can be a program name with args.
|
||||||
|
set dummy flex; ac_word=$2
|
||||||
|
--- 4414,4420 ----
|
||||||
|
|
||||||
|
test -n "$LEX" && break
|
||||||
|
done
|
||||||
|
! test -n "$LEX" || LEX="$missing_dir/missing flex"
|
||||||
|
|
||||||
|
# Extract the first word of "flex", so it can be a program name with args.
|
||||||
|
set dummy flex; ac_word=$2
|
Loading…
x
Reference in New Issue
Block a user