diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-06 11:34:35 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-06 11:34:35 (EDT) |
commit | fdb84ffb1f89b5e5d0c3411d00473ef072267ec3 (patch) | |
tree | 3c68885539f7dd7f4274395c4f32098c09a78228 | |
parent | 283b1b1f8e3ba0733c67658f7aa123d6f12cf24d (diff) |
build: Replace `cp` with `install -D`
-rwxr-xr-x | build | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ install: build install -D src/zdump.8 tzdata-doc.data/usr/share/man/man8 install -D src/zic.8 tzdata-doc.data/usr/share/man/man8 # Install country and zone tables used by tzselect. - cp src/*.tab tzdata.data/usr/share/zoneinfo + install -D src/*.tab tzdata.data/usr/share/zoneinfo # Install the Factory zone and make it the default localtime. src/zic -d tzdata.data/usr/share/zoneinfo src/factory mkdir -p tzdata.data/etc |