diff options
author | Tim Harder <radhermit@gmail.com> | 2015-12-17 03:43:48 -0500 |
---|---|---|
committer | Tim Harder <radhermit@gmail.com> | 2015-12-17 23:13:05 -0500 |
commit | ef5a1965b65bd12e545ff62525dad456205f1334 (patch) | |
tree | 163d1163cbec2e6c4aa1cb08779764c343983a8b /doc | |
parent | setup: use build_man from pkgdist to build man pages (diff) | |
download | pkgcore-ef5a1965b65bd12e545ff62525dad456205f1334.tar.gz pkgcore-ef5a1965b65bd12e545ff62525dad456205f1334.tar.bz2 pkgcore-ef5a1965b65bd12e545ff62525dad456205f1334.zip |
docs: generalize man page list
Diffstat (limited to 'doc')
-rw-r--r-- | doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/conf.py b/doc/conf.py index bcda8fc92..6c0097b8a 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -245,7 +245,7 @@ scripts = os.listdir(bin_path) # as 'filter-env', but due to python namespace contraints, it uses a '_' # instead. generated_man_pages = [ - ('pkgcore.scripts.' + s.replace('-', '_'), s) for s in scripts + ('%s.scripts.' % (project,) + s.replace('-', '_'), s) for s in scripts ] # One entry per manual page. List of tuples |