summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2014-01-07 15:02:47 (EST)
committer P. J. McDermott <pjm@nac.net>2014-01-07 15:02:47 (EST)
commitdc26682c41f0abcabac14ea1647ebc8a1d6d17d0 (patch)
tree9f5a8db827f2ff645ea37ced863c865561034bd3
parent8f9650ad91bd9b31b20f57a554de0aa3e28426df (diff)
build: Fix rm command in installation.
This should really fix those opkg errors.
-rwxr-xr-xbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/build b/build
index eb1e33c..b6137d8 100755
--- a/build
+++ b/build
@@ -37,7 +37,7 @@ install: build
# Install time zones.
for t in $(tables); do \
grep '^Link' src/$${t} | while read type dest src etc; do \
- rm -f "$${p}.data/usr/share/zoneinfo/$${src}"; \
+ rm -f "tzdata-$${t}.data/usr/share/zoneinfo/$${src}"; \
if [ x"$${dest}" = x'Etc/UTC' ]; then \
p='tzdata'; \
else \