Changeset 76499 in webkit


Ignore:
Timestamp:
Jan 24, 2011 3:22:49 AM (13 years ago)
Author:
Csaba Osztrogonác
Message:

Unreviewed fix after r76496

[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891

  • BuildSlaveSupport/build.webkit.org-config/master.cfg: Remove unnecessary "Source" from the path.
  • BuildSlaveSupport/built-product-archive: Remove unnecessary "Source" from the path.
  • Scripts/webkitdirs.pm: Add the accidentally removed slash to the path.
Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg

    r75984 r76499  
    320320    command = ["python", "./Tools/Scripts/run-qtwebkit-tests",
    321321               "--output-file=qt-unit-tests.html", "--do-not-open-results", "--timeout=30",
    322                WithProperties("WebKitBuild/%(configuration_pretty)s/Source/WebKit/qt/tests/")]
     322               WithProperties("WebKitBuild/%(configuration_pretty)s/WebKit/qt/tests/")]
    323323
    324324    def start(self):
  • trunk/Tools/BuildSlaveSupport/built-product-archive

    r75192 r76499  
    9090        os.mkdir(thinDirectory)
    9191
    92         for dirname in ["bin", "lib", "Source/JavaScriptCore"]:
     92        for dirname in ["bin", "lib", "JavaScriptCore"]:
    9393            fromDir = os.path.join(configurationBuildDirectory, dirname, "*")
    9494            toDir = os.path.join(thinDirectory, dirname)
  • trunk/Tools/ChangeLog

    r76496 r76499  
     12011-01-24  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Unreviewed fix after r76496
     4
     5        [Qt] Move project files into Source
     6        https://bugs.webkit.org/show_bug.cgi?id=52891
     7
     8        * BuildSlaveSupport/build.webkit.org-config/master.cfg: Remove unnecessary "Source" from the path.
     9        * BuildSlaveSupport/built-product-archive: Remove unnecessary "Source" from the path.
     10        * Scripts/webkitdirs.pm: Add the accidentally removed slash to the path.
     11
    1122011-01-24  Andras Becsi  <abecsi@webkit.org>
    213
  • trunk/Tools/Scripts/webkitdirs.pm

    r76496 r76499  
    357357{
    358358    my $productDir = productDir();
    359     $productDir .= "JavaScriptCore" if isQt();
     359    $productDir .= "/JavaScriptCore" if isQt();
    360360    $productDir .= "/$configuration" if (isQt() && isWindows());
    361361    $productDir .= "/Programs" if (isGtk() || isEfl());
Note: See TracChangeset for help on using the changeset viewer.