diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-05 19:31:10 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-05 19:31:10 (EDT) |
commit | db73f96a40bf139c9544b134772e72128430fd2b (patch) | |
tree | 1151c44a451fca44a3edf978eebcdb657dd9aebe | |
parent | 583af952e08d4df62b225c62890d6185b9adaec3 (diff) |
build: Drop unnecessary zic -L option
-rwxr-xr-x | build | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -37,8 +37,7 @@ install: build ln -sf . tzdata.data/usr/share/zoneinfo/posix # Install time zones. set -e; for t in $(tables); do \ - src/zic -d tzdata-$${t}.data/usr/share/zoneinfo \ - -L /dev/null src/$${t}; \ + src/zic -d tzdata-$${t}.data/usr/share/zoneinfo src/$${t}; \ 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 \ |