wok-next annotate linux-man/stuff/installmandocs.patch @ rev 19595
Up linux (4.9.4)
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Jan 21 17:27:31 2017 +0200 (2017-01-21) |
parents | |
children |
rev | line source |
---|---|
al@19595 | 1 --- a/Documentation/DocBook/Makefile |
al@19595 | 2 +++ b/Documentation/DocBook/Makefile |
al@19595 | 3 @@ -65,10 +65,10 @@ |
al@19595 | 4 find $(obj)/man -name '*.9' | xargs gzip -nf |
al@19595 | 5 |
al@19595 | 6 installmandocs: mandocs |
al@19595 | 7 - mkdir -p /usr/local/man/man9/ |
al@19595 | 8 + mkdir -p $(DESTDIR)/usr/share/man/man9/ |
al@19595 | 9 find $(obj)/man -name '*.9.gz' -printf '%h %f\n' | \ |
al@19595 | 10 sort -k 2 -k 1 | uniq -f 1 | sed -e 's: :/:' | \ |
al@19595 | 11 - xargs install -m 644 -t /usr/local/man/man9/ |
al@19595 | 12 + xargs install -m 644 -t $(DESTDIR)/usr/share/man/man9/ |
al@19595 | 13 |
al@19595 | 14 # no-op for the DocBook toolchain |
al@19595 | 15 epubdocs: |