Title: [97923] trunk/Tools
- Revision
- 97923
- Author
- [email protected]
- Date
- 2011-10-19 19:28:38 -0700 (Wed, 19 Oct 2011)
Log Message
Chromium doesn't support git branch builds, so don't add the branch to the product dir
https://bugs.webkit.org/show_bug.cgi?id=70449
Reviewed by Eric Seidel.
* Scripts/webkitdirs.pm:
(determineBaseProductDir):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (97922 => 97923)
--- trunk/Tools/ChangeLog 2011-10-20 02:23:32 UTC (rev 97922)
+++ trunk/Tools/ChangeLog 2011-10-20 02:28:38 UTC (rev 97923)
@@ -1,3 +1,13 @@
+2011-10-19 Jochen Eisinger <[email protected]>
+
+ Chromium doesn't support git branch builds, so don't add the branch to the product dir
+ https://bugs.webkit.org/show_bug.cgi?id=70449
+
+ Reviewed by Eric Seidel.
+
+ * Scripts/webkitdirs.pm:
+ (determineBaseProductDir):
+
2011-10-19 Ojan Vafai <[email protected]>
Unreviewed. Adding myself to watchlists.
Modified: trunk/Tools/Scripts/webkitdirs.pm (97922 => 97923)
--- trunk/Tools/Scripts/webkitdirs.pm 2011-10-20 02:23:32 UTC (rev 97922)
+++ trunk/Tools/Scripts/webkitdirs.pm 2011-10-20 02:28:38 UTC (rev 97923)
@@ -182,7 +182,7 @@
$baseProductDir = "$sourceDir/WebKitBuild";
}
- if (isGit() && isGitBranchBuild()) {
+ if (isGit() && isGitBranchBuild() && !isChromium()) {
my $branch = gitBranch();
$baseProductDir = "$baseProductDir/$branch";
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes