From a0147c0672d7273ff6f517227d06ceb955391829 Mon Sep 17 00:00:00 2001 From: grembo Date: Fri, 20 Dec 2024 23:25:57 +0100 Subject: [PATCH] Update setup.py, new man page location (#56) FreeBSD changed the location of man pages. The current port has a patch to do this change. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4d1e871e..17b53c9f 100644 --- a/setup.py +++ b/setup.py @@ -30,10 +30,10 @@ if os.path.isdir("/".join([sys.prefix, "etc/init.d"])): _data = [('etc/init.d', ['rc.d/iocage']), - ('man/man8', ['iocage.8.gz'])] + ('share/man/man8', ['iocage.8.gz'])] else: _data = [('etc/rc.d', ['rc.d/iocage']), - ('man/man8', ['iocage.8.gz'])] + ('share/man/man8', ['iocage.8.gz'])] if os.path.isdir("/".join([sys.prefix, "share/zsh/site-functions/"])): _data.append(('share/zsh/site-functions', ['zsh-completion/_iocage']))