⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 136195 in webkit


Ignore:
Timestamp:
Nov 29, 2012, 6:23:25 PM (14 years ago)
Author:
dpranke@chromium.org
Message:

webkitpy: autoinstaller is failing on windows
​https://bugs.webkit.org/show_bug.cgi?id=103699

Unreviewed, build fix.

We're attempting to create directories with forward slashes in them;
this is a no-no on windows.

  • Scripts/webkitpy/common/system/autoinstall.py:

(AutoInstaller._create_scratch_directory_inner):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r136192 r136195  
     12012-11-29  Dirk Pranke  <dpranke@chromium.org>
     2
     3        webkitpy: autoinstaller is failing on windows
     4        https://bugs.webkit.org/show_bug.cgi?id=103699
     5
     6        Unreviewed, build fix.
     7
     8        We're attempting to create directories with forward slashes in them;
     9        this is a no-no on windows.
     10
     11        * Scripts/webkitpy/common/system/autoinstall.py:
     12        (AutoInstaller._create_scratch_directory_inner):
     13
    1142012-11-29  Dirk Pranke  <dpranke@chromium.org>
    215
  • trunk/Tools/Scripts/webkitpy/common/system/autoinstall.py

    r133504 r136195  
    147147        # directory corresponding to the "dir" parameter already exist
    148148        # if it is not None.
    149         scratch_dir = tempfile.mkdtemp(prefix=prefix, dir=self._temp_dir)
     149        scratch_dir = tempfile.mkdtemp(prefix=prefix.replace('/', '.'), dir=self._temp_dir)
    150150        return scratch_dir
    151151
Note: See TracChangeset for help on using the changeset viewer.