mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 04:27:58 +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
|
src = 'ponysay.info' + ext
|
||||||
for command in commands:
|
for command in commands:
|
||||||
if conf[command] is not None:
|
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:
|
if conf['info-install'] is not None:
|
||||||
cmdarr = ['install-info', '--entry=Miscellaneous', '--description=' + conf['info-install'], '--dir-file=' + conf['info'] + '/dir', dest]
|
cmdarr = ['install-info', '--entry=Miscellaneous', '--description=' + conf['info-install'], '--dir-file=' + conf['info'] + '/dir', dest]
|
||||||
cmd = ' '.join(['\'%s\'' % (elem.replace('\'', '\'\\\'\'')) for elem in cmdarr])
|
cmd = ' '.join(['\'%s\'' % (elem.replace('\'', '\'\\\'\'')) for elem in cmdarr])
|
||||||
|
|
Loading…
Reference in a new issue