diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-11-13 22:25:45 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-11-13 22:25:45 +0000 |
commit | e27d476a652874ad8556fcdb06d877ebabb3e9c7 (patch) | |
tree | 076cd90c6e6d6dcf584493c8e332e3abe309665e /timezone/tzselect.ksh | |
parent | 8ca8931812236803335e0aa13d4c3158bf6c67de (diff) | |
download | glibc-e27d476a652874ad8556fcdb06d877ebabb3e9c7.tar.gz glibc-e27d476a652874ad8556fcdb06d877ebabb3e9c7.tar.xz glibc-e27d476a652874ad8556fcdb06d877ebabb3e9c7.zip |
Update tzcode from upstream git and support --with-bugurl for it.
Diffstat (limited to 'timezone/tzselect.ksh')
-rw-r--r-- | timezone/tzselect.ksh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/timezone/tzselect.ksh b/timezone/tzselect.ksh index 4fe5d02ba1..8e66b44273 100644 --- a/timezone/tzselect.ksh +++ b/timezone/tzselect.ksh @@ -1,6 +1,8 @@ #!/bin/bash +PKGVERSION='(tzcode) ' TZVERSION=see_Makefile +REPORT_BUGS_TO=tz@iana.org # Ask the user about the time zone, and output the resulting TZ value to stdout. # Interact with the user via stderr and stdin. @@ -43,14 +45,14 @@ if [ "$1" = "--help" ]; then Usage: tzselect Select a time zone interactively. -Report bugs to tz@elsie.nci.nih.gov. +Report bugs to $REPORT_BUGS_TO. EOF - exit 0 + exit elif [ "$1" = "--version" ]; then cat <<EOF -tzselect $TZVERSION +tzselect $PKGVERSION$TZVERSION EOF - exit 0 + exit fi # Make sure the tables are readable. |