Show More
@@ -601,7 +601,8 b' def has_debdeps():' | |||
|
601 | 601 | |
|
602 | 602 | @check("demandimport", "demandimport enabled") |
|
603 | 603 | def has_demandimport(): |
|
604 | return os.environ.get('HGDEMANDIMPORT') != 'disable' | |
|
604 | # chg disables demandimport intentionally for performance wins. | |
|
605 | return ((not has_chg()) and os.environ.get('HGDEMANDIMPORT') != 'disable') | |
|
605 | 606 | |
|
606 | 607 | @check("py3k", "running with Python 3.x") |
|
607 | 608 | def has_py3k(): |
General Comments 0
You need to be logged in to leave comments.
Login now