Changeset 77264 in webkit


Ignore:
Timestamp:
Feb 1, 2011 11:22:06 AM (13 years ago)
Author:
dbates@webkit.org
Message:

2011-02-01 Scott Cameron <sccameron@rim.com>

Reviewed by Daniel Bates.

Use Windows format for MinGW HTTPD path.
https://bugs.webkit.org/show_bug.cgi?id=53503

  • Scripts/webkitperl/httpd.pm:
    • Use single-quotes around MySys value for $httpdPath in getHTTPDPath() so that we don't have to escape the space characters in the path. Also, changed path to Windows-style path and removed FIXME comment.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r77253 r77264  
     12011-02-01  Scott Cameron  <sccameron@rim.com>
     2
     3        Reviewed by Daniel Bates.
     4
     5        Use Windows format for MinGW HTTPD path.
     6        https://bugs.webkit.org/show_bug.cgi?id=53503
     7
     8        * Scripts/webkitperl/httpd.pm:
     9          - Use single-quotes around MySys value for $httpdPath in getHTTPDPath()
     10            so that we don't have to escape the space characters in the path. Also,
     11            changed path to Windows-style path and removed FIXME comment.
     12
    1132011-02-01  Balazs Kelemen  <kbalazs@webkit.org>
    214
  • trunk/Tools/Scripts/webkitperl/httpd.pm

    r77161 r77264  
    8080        $httpdPath = "/usr/sbin/apache2";
    8181    } elsif (isMsys()) {
    82         # FIXME: We should write this without escaping the space character. Instead, the call
    83         #        site should take responsibility for escaping the path.
    84         $httpdPath = "/c/program\ files/apache\ software\ foundation/apache2.2/bin/httpd.exe";
     82        $httpdPath = 'c:\program files\apache software foundation\apache2.2\bin\httpd.exe';
    8583    } else {
    8684        $httpdPath = "/usr/sbin/httpd";
Note: See TracChangeset for help on using the changeset viewer.