summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/build b/build
index 631f2ee..d061013 100755
--- a/build
+++ b/build
@@ -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 \