mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
pkgs/development/libraries/glibc-2.5: fix build with GNU Make 3.82
svn path=/nixpkgs/trunk/; revision=25701
This commit is contained in:
parent
e862574d51
commit
031edc4509
@ -12,7 +12,8 @@ stdenv.mkDerivation {
|
||||
md5 = "1fb29764a6a650a4d5b409dda227ac9f";
|
||||
};
|
||||
|
||||
patches = [ ./glibc-pwd.patch ./glibc-getcwd-param-MAX.patch ./glibc-inline.patch ./x86-fnstsw.patch ./binutils-ld.patch ];
|
||||
patches = [ ./glibc-pwd.patch ./glibc-getcwd-param-MAX.patch ./glibc-inline.patch
|
||||
./x86-fnstsw.patch ./binutils-ld.patch ./make-3-82-fix.patch ];
|
||||
|
||||
inherit kernelHeaders installLocales;
|
||||
|
||||
|
14
pkgs/development/libraries/glibc-2.5/make-3-82-fix.patch
Normal file
14
pkgs/development/libraries/glibc-2.5/make-3-82-fix.patch
Normal file
@ -0,0 +1,14 @@
|
||||
--- glibc-2.5/manual/Makefile.orig 2011-01-26 17:03:14.000000000 +0100
|
||||
+++ glibc-2.5/manual/Makefile 2011-01-26 17:04:30.000000000 +0100
|
||||
@@ -232,7 +232,10 @@
|
||||
.PHONY: stubs
|
||||
stubs: $(objpfx)stubs
|
||||
endif
|
||||
-$(objpfx)stubs ../po/manual.pot $(objpfx)stamp%:
|
||||
+$(objpfx)stubs ../po/manual.pot:
|
||||
+ $(make-target-directory)
|
||||
+ touch $@
|
||||
+$(objpfx)stamp%:
|
||||
$(make-target-directory)
|
||||
touch $@
|
||||
|
Loading…
Reference in New Issue
Block a user