diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-27 14:11:05 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-27 14:11:05 +0000 |
commit | 4e395306e8c74411b565df245e7e6d7cda433377 (patch) | |
tree | 789f44aa41f7d9bd824b422de76c74b8d3ab953b /time/Makefile | |
parent | 5f160cde271e86c7eec9ec4f2620e376d86eda52 (diff) | |
download | glibc-4e395306e8c74411b565df245e7e6d7cda433377.tar.gz |
Mon May 27 10:10:00 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* time/Makefile (z.% rule): Generate generic zone%/ rule after
zone%/right/ and zone%/posix/ rules so they match first.
Diffstat (limited to 'time/Makefile')
-rw-r--r-- | time/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/time/Makefile b/time/Makefile index fa7877d14b..bd4d6b1c3c 100644 --- a/time/Makefile +++ b/time/Makefile @@ -82,15 +82,15 @@ $(tzfiles:%=$(objpfx)z.%): $(objpfx)z.%: % Makefile echo 'endef' ;\ echo '$*-zones := $$(subst $$(nl), ,$$($*-zones))' ;\ echo 'ifdef $*-zones' ;\ - echo '$$(addprefix $$(datadir)/zone%/,$$($*-zones)): \' ;\ - echo '$< $$(objpfx)zic $$(leapseconds) yearistype' ;\ - echo ' $$(tzcompile)' ;\ echo '$$(addprefix $$(datadir)/zone%/right/,$$($*-zones)): \' ;\ echo '$< $$(objpfx)zic leapseconds yearistype' ;\ echo ' $$(tzcompile)' ;\ echo '$$(addprefix $$(datadir)/zone%/posix/,$$($*-zones)): \' ;\ echo '$< $$(objpfx)zic /dev/null yearistype' ;\ echo ' $$(tzcompile)' ;\ + echo '$$(addprefix $$(datadir)/zone%/,$$($*-zones)): \' ;\ + echo '$< $$(objpfx)zic $$(leapseconds) yearistype' ;\ + echo ' $$(tzcompile)' ;\ echo 'endif' ;\ echo 'zonenames := $$(zonenames) $$($*-zones)' ;\ ) > $@.new |