diff options
| author | Andreas Schwab <schwab@redhat.com> | 2010-09-06 14:55:59 +0200 |
|---|---|---|
| committer | Andreas Schwab <schwab@redhat.com> | 2010-12-01 15:35:17 +0100 |
| commit | 08031ce5e3fc7637027200513e451f330e57ac8c (patch) | |
| tree | 77cbfba14aba069498defd7a901cc6c77aadff4d | |
| parent | 00b4cc7aefcebb3d36532c5f3ea245737b67c561 (diff) | |
| download | glibc-08031ce5e3fc7637027200513e451f330e57ac8c.tar.xz glibc-08031ce5e3fc7637027200513e451f330e57ac8c.zip | |
Don't mix pattern rules with normal rules
(cherry picked from commit 32cf40699346d37fabfa887bbd95e95004799ae1)
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | manual/Makefile | 5 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2010-09-06 Andreas Schwab <schwab@redhat.com> + + * manual/Makefile: Don't mix pattern rules with normal rules. + 2010-08-12 Andreas Schwab <schwab@redhat.com> [BZ #11904] diff --git a/manual/Makefile b/manual/Makefile index c5866eb9de..b1f5fa73e5 100644 --- a/manual/Makefile +++ b/manual/Makefile @@ -232,7 +232,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 $@ |
