aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/eglibc
diff options
context:
space:
mode:
authorMirko Vogt <mirko@openwrt.org>2011-06-23 14:38:26 +0000
committerMirko Vogt <mirko@openwrt.org>2011-06-23 14:38:26 +0000
commit83e981ca76d315e6b2e1884b72ab47428c1818f9 (patch)
tree4069252d7d435a590eee83f4c1ce22c8dea0084e /toolchain/eglibc
parent5945c8a227a359582654216d2187fcb02672b5d7 (diff)
downloadupstream-83e981ca76d315e6b2e1884b72ab47428c1818f9.tar.gz
upstream-83e981ca76d315e6b2e1884b72ab47428c1818f9.tar.bz2
upstream-83e981ca76d315e6b2e1884b72ab47428c1818f9.zip
[toolchain/eglibc] manual/Makefile: Don't mix pattern rules with normal rules.
This change got committed into the official eglibc repository in commit 11461. Thanks to Philip Prindeville for pointing this out. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27264 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/eglibc')
-rw-r--r--toolchain/eglibc/patches/2.12/100-do-not-use-implicit-rules.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/toolchain/eglibc/patches/2.12/100-do-not-use-implicit-rules.patch b/toolchain/eglibc/patches/2.12/100-do-not-use-implicit-rules.patch
new file mode 100644
index 0000000000..afff9e46ee
--- /dev/null
+++ b/toolchain/eglibc/patches/2.12/100-do-not-use-implicit-rules.patch
@@ -0,0 +1,16 @@
+diff --git a/trunk/libc/manual/Makefile b/trunk/libc/manual/Makefile
+index 754bf12..40c83be 100644
+--- a/libc/manual/Makefile
++++ b/libc/manual/Makefile
+@@ -243,7 +243,10 @@ ifdef objpfx
+ .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 $@
+