Merge pull request #930 from benthetechguy/man-fix

Don't install manpages to /usr/usr
This commit is contained in:
tobi-wan-kenobi 2022-09-21 06:32:43 +02:00 committed by GitHub
commit a7979e7d66
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.*"])
)