From 393f08bb2edd764c2810b2b88e6eef80952f44bd Mon Sep 17 00:00:00 2001 From: Nikolaus Schulz Date: Sun, 28 Nov 2010 02:02:51 +0100 Subject: [PATCH] setup.py: install manpage into share/man/man1 instead of man/man1 This change aims to comply with the FHS, which puts manpages into /usr/share/man, not /usr/man. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 33eab7c..a1449db 100755 --- a/setup.py +++ b/setup.py @@ -29,5 +29,5 @@ setup(name="archivemail", maintainer="Nikolaus Schulz, Peter Poeml", maintainer_email="nikosch@users.sourceforge.net, poeml@users.sourceforge.net", scripts=["archivemail"], - data_files=[("man/man1", ["archivemail.1"])], + data_files=[("share/man/man1", ["archivemail.1"])], )