diff options
author | John Ankarström <john@ankarstrom.se> | 2021-06-29 17:44:14 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-06-29 17:44:14 +0200 |
commit | 7e5f08a183322d0d4f1f481e2d79bc188c7e133e (patch) | |
tree | 9dca8506c256baae102c2eb577f0a945d30b04ae /Makefile | |
parent | dfd72df0ae0166b4c94a17bf8ca18954eff1132d (diff) | |
download | xutil-7e5f08a183322d0d4f1f481e2d79bc188c7e133e.tar.gz |
Makefile: Support links
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,3 @@ install: install -m 644 *.1 /usr/local/man/man1/ - install `ls -l | awk '$$1 ~ /^-/ && $$1 ~ /x$$/ {print $$NF}'` /usr/local/bin + install `ls -l | perl -ne 'next if not /^[-l]\S*x\s/; s/ -> .*//; s/.* //; print'` /usr/local/bin |