diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-05 19:21:09 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-05 19:21:09 (EDT) |
commit | 41b47d0c96dccbf4a688448f88fc9850936661c2 (patch) | |
tree | 9a774f75f176793c5edd1ce449e50e36449d31d1 /build | |
parent | e2492430cb5f64b3bc6caaee445ebcd107f825bb (diff) |
build: zic accepts "L" abbreviation for "Link"
No tables actually use it yet, but we'll be prepared in case they ever
do.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ install: build ln -sf . tzdata.data/usr/share/zoneinfo/posix # Install time zones. for t in $(tables); do \ - grep '^Link' src/$${t} | while read type dest src etc; do \ + grep '^L' src/$${t} | while read type dest src etc; do \ rm -f "tzdata-$${t}.data/usr/share/zoneinfo/$${src}"; \ if [ x"$${dest}" = x'Etc/UTC' ]; then \ p='tzdata'; \ @@ -64,7 +64,7 @@ install: build done # Install links listed in the "backward" table into the relevant time # zone data package. - grep '^Link' src/backward | while read type dest src etc; do \ + grep '^L' src/backward | while read type dest src etc; do \ if [ x"$${dest}" = x'Etc/UTC' ]; then \ p='tzdata'; \ else \ |