Mercurial > hg
changeset 7801:e5627562b9f2
setup: run hg with empty HGRCPATH for robustness.
Otherwise a bad hgrc file can make the version detection fail.
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Tue, 24 Feb 2009 18:09:16 +0100 |
parents | 58125c27ddbe |
children | 6d99ff7b79b5 06afe0f9dbf8 |
files | setup.py |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Tue Feb 24 16:05:43 2009 +0100 +++ b/setup.py Tue Feb 24 18:09:16 2009 +0100 @@ -103,6 +103,7 @@ pypath = os.environ.get('PYTHONPATH', '') purepath = os.path.join('mercurial', 'pure') os.environ['PYTHONPATH'] = os.pathsep.join(['mercurial', purepath, pypath]) + os.environ['HGRCPATH'] = '' # do not read any config file cmd = '%s hg id -it' % sys.executable l = os.popen(cmd).read().split() os.environ['PYTHONPATH'] = pypath