diff options
author | Mirko Vogt <mirko@openwrt.org> | 2011-06-23 14:38:26 +0000 |
---|---|---|
committer | Mirko Vogt <mirko@openwrt.org> | 2011-06-23 14:38:26 +0000 |
commit | f03b067f326cef4ecf47ed7c03e3c5e8906ed436 (patch) | |
tree | 3d5c5cb9f0996ba378618eec3f86be30805565a4 /toolchain/eglibc/patches | |
parent | 28fbd7470d1c35edf1de93a0ac26027cf47c724c (diff) | |
download | upstream-f03b067f326cef4ecf47ed7c03e3c5e8906ed436.tar.gz upstream-f03b067f326cef4ecf47ed7c03e3c5e8906ed436.tar.bz2 upstream-f03b067f326cef4ecf47ed7c03e3c5e8906ed436.zip |
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.
SVN-Revision: 27264
Diffstat (limited to 'toolchain/eglibc/patches')
-rw-r--r-- | toolchain/eglibc/patches/2.12/100-do-not-use-implicit-rules.patch | 16 |
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 $@ + |