diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-05 23:29:11 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-05 23:29:11 (EDT) |
commit | 72178aadfb990a08a73e9b9a342176429a5213e6 (patch) | |
tree | 97fc25fc5e31a93b9f33bf9f4ab4befabde5db9d /build | |
parent | d2df9d01aa35b03ff13ee2d4704d64984084a4ea (diff) |
tzselect, zdump: Install executables to /usr/bin
These don't attempt to modify system files and are intended for use by
unprivileged users. This is where upstream installs them.
Diffstat (limited to 'build')
-rwxr-xr-x | build | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -19,8 +19,9 @@ build: touch $@ install: build - mkdir -p dest/usr/sbin - cp src/tzselect src/zic src/zdump dest/usr/sbin + mkdir -p dest/usr/bin dest/usr/sbin + cp src/tzselect src/zdump dest/usr/bin + cp src/zic dest/usr/sbin mkdir -p dest/usr/share/man/man8 cp src/tzselect.8 src/zic.8 src/zdump.8 dest/usr/share/man/man8 oh-fixperms |