Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.



Canonical link: https://commits.webkit.org/66732@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@76499 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
ossy-szeged committed Jan 24, 2011
1 parent bcdd6b8 commit 7cd57eb
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tools/BuildSlaveSupport/build.webkit.org-config/master.cfg
Expand Up @@ -319,7 +319,7 @@ class RunQtAPITests(shell.Test):
descriptionDone = ["API tests"]
command = ["python", "./Tools/Scripts/run-qtwebkit-tests",
"--output-file=qt-unit-tests.html", "--do-not-open-results", "--timeout=30",
WithProperties("WebKitBuild/%(configuration_pretty)s/Source/WebKit/qt/tests/")]
WithProperties("WebKitBuild/%(configuration_pretty)s/WebKit/qt/tests/")]

def start(self):
self.setProperty("configuration_pretty", self.getProperty("configuration").title())
Expand Down
2 changes: 1 addition & 1 deletion Tools/BuildSlaveSupport/built-product-archive
Expand Up @@ -89,7 +89,7 @@ def archiveBuiltProduct(configuration, platform):
shutil.rmtree(thinDirectory)
os.mkdir(thinDirectory)

for dirname in ["bin", "lib", "Source/JavaScriptCore"]:
for dirname in ["bin", "lib", "JavaScriptCore"]:
fromDir = os.path.join(configurationBuildDirectory, dirname, "*")
toDir = os.path.join(thinDirectory, dirname)
os.makedirs(toDir)
Expand Down
11 changes: 11 additions & 0 deletions Tools/ChangeLog
@@ -1,3 +1,14 @@
2011-01-24 Csaba Osztrogonác <ossy@webkit.org>

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.

2011-01-24 Andras Becsi <abecsi@webkit.org>

Reviewed by Csaba Osztrogonác.
Expand Down
2 changes: 1 addition & 1 deletion Tools/Scripts/webkitdirs.pm
Expand Up @@ -356,7 +356,7 @@ sub productDir
sub jscProductDir
{
my $productDir = productDir();
$productDir .= "JavaScriptCore" if isQt();
$productDir .= "/JavaScriptCore" if isQt();
$productDir .= "/$configuration" if (isQt() && isWindows());
$productDir .= "/Programs" if (isGtk() || isEfl());

Expand Down

0 comments on commit 7cd57eb

Please sign in to comment.