diff options
author | P. 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) |
commit | dc26682c41f0abcabac14ea1647ebc8a1d6d17d0 (patch) | |
tree | 9f5a8db827f2ff645ea37ced863c865561034bd3 | |
parent | 8f9650ad91bd9b31b20f57a554de0aa3e28426df (diff) |
build: Fix rm command in installation.
This should really fix those opkg errors.
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |