diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-11-10 00:31:20 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-11-10 00:31:20 +0000 |
commit | 9ec6f8bd90e485c122af91f68ba3962380a9f6d4 (patch) | |
tree | cc3a2df6fd223e8aa87a9695a192b1b3897fd795 /timezone | |
parent | 0aa8f8a17fdeebce1a87c0c2e664f47734505f61 (diff) | |
download | glibc-9ec6f8bd90e485c122af91f68ba3962380a9f6d4.tar.gz |
Use glibc version information in zic and zdump.
Diffstat (limited to 'timezone')
-rw-r--r-- | timezone/Makefile | 7 | ||||
-rw-r--r-- | timezone/README | 4 | ||||
-rw-r--r-- | timezone/version.h | 1 |
3 files changed, 8 insertions, 4 deletions
diff --git a/timezone/Makefile b/timezone/Makefile index 49d3b9d472..87b03e2c5f 100644 --- a/timezone/Makefile +++ b/timezone/Makefile @@ -54,6 +54,13 @@ include ../Rules $(objpfx)zic: $(objpfx)scheck.o $(objpfx)ialloc.o +$(objpfx)zic.o $(objpfx)zdump.o: $(objpfx)version.h + +$(objpfx)version.h: $(common-objpfx)config.make + echo 'static char const TZVERSION[]="$(PKGVERSION)$(version)";' \ + > $@.new + mv -f $@.new $@ + tz-cflags = -DTZDIR='"$(zonedir)"' \ -DTZDEFAULT='"$(localtime-file)"' \ -DTZDEFRULES='"$(posixrules-file)"' \ diff --git a/timezone/README b/timezone/README index da3f20dbd4..7a5e31ce42 100644 --- a/timezone/README +++ b/timezone/README @@ -1,9 +1,7 @@ The files zic.c zdump.c ialloc.c scheck.c tzfile.h private.h tzselect.ksh checktab.awk -come from the tzcode package by Arthur David Olson et.al.; the file - version.h -has the contents that would be generated by that package's Makefile. +come from the tzcode package by Arthur David Olson et.al. The files africa antarctica asia australasia europe diff --git a/timezone/version.h b/timezone/version.h deleted file mode 100644 index 0873ea1347..0000000000 --- a/timezone/version.h +++ /dev/null @@ -1 +0,0 @@ -static char const TZVERSION[]="tz2012i"; |