diff options
| author | Fred Drake <fdrake@acm.org> | 2008-04-04 11:31:14 (GMT) |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 2008-04-04 11:31:14 (GMT) |
| commit | fe7056240b081ccf51ff08b3a15afbfad52a87ad (patch) | |
| tree | 3c7e9119703f1e01e4a52319059d88231c145ff9 /Lib/distutils/core.py | |
| parent | dc96a77c3adc79694382a994249a3ec526d6f526 (diff) | |
| download | cpython-fe7056240b081ccf51ff08b3a15afbfad52a87ad.zip cpython-fe7056240b081ccf51ff08b3a15afbfad52a87ad.tar.gz cpython-fe7056240b081ccf51ff08b3a15afbfad52a87ad.tar.bz2 | |
my previous change did what I said it should not: it changed the current
directory to the directory in which the setup.py script lived (which made
__file__ wrong)
fixed, with test that the script is run in the current directory of the caller
Diffstat (limited to 'Lib/distutils/core.py')
| -rw-r--r-- | Lib/distutils/core.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index 640d6b5..32b9026 100644 --- a/Lib/distutils/core.py +++ b/Lib/distutils/core.py @@ -212,7 +212,6 @@ def run_setup (script_name, script_args=None, stop_after="run"): save_argv = sys.argv g = {'__file__': script_name} l = {} - os.chdir(os.path.dirname(script_name) or os.curdir) try: try: sys.argv[0] = script_name |
