summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/eglibc/eglibc-2.12/fix-for-make-3.82.diff
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2010-11-09 12:14:28 +0000
committerJoshua Lock <josh@linux.intel.com>2010-12-10 16:50:39 +0000
commit72ddd5c20246a5d5b1752b58a61ef75b4c39cc40 (patch)
tree0300188a9303fa0e8b07afe866b9ec8ad4120c43 /meta/recipes-core/eglibc/eglibc-2.12/fix-for-make-3.82.diff
parent6026999e81042a7f6560f9bce04390865509b235 (diff)
downloadpoky-72ddd5c20246a5d5b1752b58a61ef75b4c39cc40.tar.gz
eglibc: fix build of eglibc-initial for make 3.82
Make 3.82, as shipped with Fedora 14, fixes some holes in the parser which in turn breaks behaviour of some Makefiles. Most notably eglibc's. Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta/recipes-core/eglibc/eglibc-2.12/fix-for-make-3.82.diff')
-rw-r--r--meta/recipes-core/eglibc/eglibc-2.12/fix-for-make-3.82.diff25
1 files changed, 25 insertions, 0 deletions
diff --git a/meta/recipes-core/eglibc/eglibc-2.12/fix-for-make-3.82.diff b/meta/recipes-core/eglibc/eglibc-2.12/fix-for-make-3.82.diff
new file mode 100644
index 0000000000..934d31ab89
--- /dev/null
+++ b/meta/recipes-core/eglibc/eglibc-2.12/fix-for-make-3.82.diff
@@ -0,0 +1,25 @@
1Make 3.82, as shipped with Fedora 14, fixes some holes in the parser which in
2turn breaks behaviour of some Makefiles. Most notably eglibc's.
3
4http://www.mail-archive.com/bug-make@gnu.org/msg06220.html
5
6Fix back-ported from glibc/eglibc revision control.
7
8JL 13/10/10
9
10Index: libc/manual/Makefile
11===================================================================
12--- libc.orig/manual/Makefile
13+++ libc/manual/Makefile
14@@ -243,7 +243,10 @@ ifdef objpfx
15 .PHONY: stubs
16 stubs: $(objpfx)stubs
17 endif
18-$(objpfx)stubs ../po/manual.pot $(objpfx)stamp%:
19+$(objpfx)stubs ../po/manual.pot:
20+ $(make-target-directory)
21+ touch $@
22+$(objpfx)stamp%:
23 $(make-target-directory)
24 touch $@
25