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:
Ben Westover 2022-09-20 23:15:38 -04:00 committed by GitHub
parent ccf2fb3fd0
commit 7ae95ad6b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.*"])
)