aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolaus Schulz <microschulz@web.de>2010-11-28 02:02:51 +0100
committerNikolaus Schulz <microschulz@web.de>2010-11-28 02:02:51 +0100
commit393f08bb2edd764c2810b2b88e6eef80952f44bd (patch)
tree3b30b9fc2f16d9b0162b8fbad9f289939b158be1
parentad4c4b9642acaf39edf7e1966b976ab9f695383d (diff)
downloadarchivemail-393f08bb2edd764c2810b2b88e6eef80952f44bd.tar.gz
archivemail-393f08bb2edd764c2810b2b88e6eef80952f44bd.tar.bz2
archivemail-393f08bb2edd764c2810b2b88e6eef80952f44bd.zip
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.
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
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"])],
)