Reviewers: ,
Please review this at http://codereview.tryton.org/392001/ Affected files: M setup.py Index: setup.py =================================================================== --- a/setup.py +++ b/setup.py @@ -187,6 +187,9 @@ path = os.path.join(directory, 'makensis.exe') if os.path.isfile(path): return path + default_path = "c:\Program Files\NSIS\makensis.exe"; + if os.path.isfile(default_path): + return default_path return None if 'py2exe' in dist.commands: -- [email protected] mailing list
