Chromium Code Reviews| Index: gyptest.py |
| =================================================================== |
| --- gyptest.py (revision 1794) |
| +++ gyptest.py (working copy) |
| @@ -176,7 +176,7 @@ |
| if opts.path: |
| extra_path = [os.path.abspath(p) for p in opts.path] |
| extra_path = os.pathsep.join(extra_path) |
| - os.environ['PATH'] += os.pathsep + extra_path |
| + os.environ['PATH'] = extra_path + os.pathsep + os.environ['PATH'] |
| if not args: |
| if not opts.all: |