wmacpi: Install manpages to PREFIX/share/man/man1.
By default, the manpages are installed in PREFIX/man/man1, which does not conform to the Filesystem Hierarchy Standard. This patch installs them correctly to PREFIX/share/man/man1. Based on the patch from Debian: http://sources.debian.net/src/wmacpi/2.2~rc5%2Bds-1/debian/patches/install_manpages_to_usr_share.patch/
This commit is contained in:
parent
413a212a2e
commit
0165115fe9
|
@ -18,7 +18,7 @@ the files by hand . . .
|
||||||
Files installed (paths relative to PREFIX):
|
Files installed (paths relative to PREFIX):
|
||||||
bin/wmacpi
|
bin/wmacpi
|
||||||
bin/acpi
|
bin/acpi
|
||||||
man/man1/wmacpi.1
|
share/man/man1/wmacpi.1
|
||||||
man/man1/acpi.1
|
share/man/man1/acpi.1
|
||||||
|
|
||||||
Simon Fowler <simon@dreamcraft.com.au>, 2005-01-05
|
Simon Fowler <simon@dreamcraft.com.au>, 2005-01-05
|
|
@ -64,8 +64,8 @@ clean-all: clean
|
||||||
install: $(targets)
|
install: $(targets)
|
||||||
install -d $(PREFIX)/bin/
|
install -d $(PREFIX)/bin/
|
||||||
install -pc $(targets) $(PREFIX)/bin/
|
install -pc $(targets) $(PREFIX)/bin/
|
||||||
install -d $(PREFIX)/man/man1/
|
install -d $(PREFIX)/share/man/man1/
|
||||||
install -pc $(doc_targets) $(PREFIX)/man/man1/
|
install -pc $(doc_targets) $(PREFIX)/share/man/man1/
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
etags $(WMSRC) $(CLSRC) $(HEADERS)
|
etags $(WMSRC) $(CLSRC) $(HEADERS)
|
||||||
|
|
Loading…
Reference in a new issue