Don't install manpages to /usr/usr
`data_files` shouldn't have `usr/` in it; this causes the manpages to be installed to `/usr/usr/share/man/man1` instead of `/usr/share/man/man1`.
This commit is contained in:
parent
ccf2fb3fd0
commit
7ae95ad6b6
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -56,7 +56,7 @@ setup(
|
|||
("share/bumblebee-status/themes", glob.glob("themes/*.json")),
|
||||
("share/bumblebee-status/themes/icons", glob.glob("themes/icons/*.json")),
|
||||
("share/bumblebee-status/utility", glob.glob("bin/*")),
|
||||
("usr/share/man/man1", glob.glob("man/*.1")),
|
||||
("share/man/man1", glob.glob("man/*.1")),
|
||||
],
|
||||
packages=find_packages(exclude=["tests", "tests.*"])
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue