# HG changeset patch # User M. George Hansen # Date 1308210259 36000 # Node ID a2b1966ebe5af92ddd27fd5d356532a1c194aa34 # Parent feceb61305702390c619c56a6ed513c2221442e3 Fixed bug in wscript that caused FIFEPATH to be set to the wrong default. * FIFEPATH was incorrectly being set to the current working directory when no argument was specified, the default should have been Python's site-packages directory. * FIFEPATH should now correctly default to Python's site-packages when no --fifepath argument is specified. diff -r feceb6130570 -r a2b1966ebe5a wscript --- a/wscript Wed Jun 15 20:15:18 2011 -1000 +++ b/wscript Wed Jun 15 21:44:19 2011 -1000 @@ -28,7 +28,7 @@ min_python_version = (2, 6) cnf.check_python_version(min_python_version) - if not cnf.options.fifepath: + if cnf.options.fifepath: cnf.env['FIFEPATH'] = os.path.abspath( os.path.expanduser(cnf.options.fifepath) )