mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-21 20:18:00 +01:00
fix setup
Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
parent
e0a2db3247
commit
5f6d97338c
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -621,7 +621,8 @@ class Setup():
|
|||
src = 'ponysay.info' + ext
|
||||
for command in commands:
|
||||
if conf[command] is not None:
|
||||
dests.append(conf['info'] + '/' + command + '.info' + ext)
|
||||
dest = conf['info'] + '/' + command + '.info' + ext
|
||||
dests.append(dest)
|
||||
if conf['info-install'] is not None:
|
||||
cmdarr = ['install-info', '--entry=Miscellaneous', '--description=' + conf['info-install'], '--dir-file=' + conf['info'] + '/dir', dest]
|
||||
cmd = ' '.join(['\'%s\'' % (elem.replace('\'', '\'\\\'\'')) for elem in cmdarr])
|
||||
|
|
Loading…
Reference in a new issue