From 5f6d97338c70cae31a4feb91e708159833e1bcaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Mon, 14 Sep 2015 20:23:17 +0200 Subject: [PATCH] fix setup MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index efc9a8d5..6edd7495 100755 --- a/setup.py +++ b/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])