diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-06 12:09:19 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-06 12:09:19 (EDT) |
commit | 42a7bf22ff73a452aa964b01dc680a2a16d26d8d (patch) | |
tree | 84e566bdf90dcaaca02b897d8c967eea8aad98c9 /build | |
parent | 687e367310f40973076cce912d3a6210baf87268 (diff) |
build: Convert macro name to upper case
Diffstat (limited to 'build')
-rwxr-xr-x | build | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ #!/usr/bin/make -f -tables = \ +TABLES = \ africa \ antarctica \ asia \ @@ -41,7 +41,7 @@ install: build mkdir -p tzdata.data/etc ln -sf /usr/share/zoneinfo/Factory tzdata.data/etc/localtime # Install time zones. - set -e; for t in $(tables); do \ + set -e; for t in $(TABLES); do \ p="tzdata-$${t}"; \ src/zic -d "$${p}.data/usr/share/zoneinfo" "src/$${t}"; \ grep '^L' src/$${t} | while read type dest src etc; do \ @@ -65,7 +65,7 @@ install: build grep '^L' src/backward | while read type dest src etc; do \ p="tzdata-$$(cd src && grep -l \ "^Zone[ ][ ]*$${dest}[ ].*$$" \ - $(tables))"; \ + $(TABLES))"; \ link="$${src}" up=''; \ while [ x"$${link#*/}" != x"$${link}" ] && \ [ x"$${link%%/*}" = x"$${dest%%/*}" ]; do \ |