Title: [99282] trunk/Tools
- Revision
- 99282
- Author
- [email protected]
- Date
- 2011-11-04 08:29:40 -0700 (Fri, 04 Nov 2011)
Log Message
[Qt] Disable STDIN check before cleaning build dir
It didn't work on the bots.
Reviewed by Ossy.
* Scripts/webkitdirs.pm:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (99281 => 99282)
--- trunk/Tools/ChangeLog 2011-11-04 15:20:50 UTC (rev 99281)
+++ trunk/Tools/ChangeLog 2011-11-04 15:29:40 UTC (rev 99282)
@@ -1,5 +1,15 @@
2011-11-04 Tor Arne Vestbø <[email protected]>
+ [Qt] Disable STDIN check before cleaning build dir
+
+ It didn't work on the bots.
+
+ Reviewed by Ossy.
+
+ * Scripts/webkitdirs.pm:
+
+2011-11-04 Tor Arne Vestbø <[email protected]>
+
[Qt] Don't build all of webkit when running build-jsc
In case the whole webkit project was built, but we then subsequently
Modified: trunk/Tools/Scripts/webkitdirs.pm (99281 => 99282)
--- trunk/Tools/Scripts/webkitdirs.pm 2011-11-04 15:20:50 UTC (rev 99281)
+++ trunk/Tools/Scripts/webkitdirs.pm 2011-11-04 15:29:40 UTC (rev 99282)
@@ -1775,12 +1775,13 @@
if ($needsCleanBuild) {
print ", clean build needed!\n";
- if (! -t STDIN || ( &promptUser("Would you like to clean the build directory?", "yes") eq "yes")) {
+ # FIXME: This STDIN/STDOUT check does not work on the bots. Disable until it does.
+ # if (! -t STDIN || ( &promptUser("Would you like to clean the build directory?", "yes") eq "yes")) {
chdir $originalCwd;
File::Path::rmtree($dir);
File::Path::mkpath($dir);
chdir $dir or die "Failed to cd into " . $dir . "\n";
- }
+ #}
}
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes