[webkit-changes] cvs commit: WebKitTools/Scripts build-webkit
Eric
eseidel at opensource.apple.com
Thu Dec 15 18:21:28 PST 2005
eseidel 05/12/15 18:21:27
Modified: . ChangeLog
Scripts build-webkit
Log:
Bug #: none
Submitted by: eseidel
Reviewed by: tim h
* Scripts/build-webkit: --svg is now default!
Revision Changes Path
1.130 +6 -0 WebKitTools/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /cvs/root/WebKitTools/ChangeLog,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -r1.129 -r1.130
--- ChangeLog 16 Dec 2005 02:16:30 -0000 1.129
+++ ChangeLog 16 Dec 2005 02:21:27 -0000 1.130
@@ -1,5 +1,11 @@
2005-12-15 Eric Seidel <eseidel at apple.com>
+ Reviewed by Tim Hatcher.
+
+ * Scripts/build-webkit: --svg is now default!
+
+2005-12-15 Eric Seidel <eseidel at apple.com>
+
Reviewed by mjs.
Don't run svg test automatically if +SVG is built (yet).
1.19 +4 -4 WebKitTools/Scripts/build-webkit
Index: build-webkit
===================================================================
RCS file: /cvs/root/WebKitTools/Scripts/build-webkit,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- build-webkit 6 Dec 2005 07:20:43 -0000 1.18
+++ build-webkit 16 Dec 2005 02:21:27 -0000 1.19
@@ -34,8 +34,8 @@
use lib $FindBin::Bin;
use webkitdirs;
-my $svgSupport = 0;
-GetOptions('svg' => \$svgSupport);
+my $svgSupport = 1;
+GetOptions('svg!' => \$svgSupport);
checkRequiredSystemConfig();
setConfiguration();
@@ -77,8 +77,8 @@
for my $dir (@projects) {
chdir $dir or die;
my $result;
- if ($svgSupport && ($dir eq "WebCore")) {
- $result = system "xcodebuild", "-project", "$dir.xcodeproj", @options, "-target", "$dir+SVG";
+ if (!$svgSupport && ($dir eq "WebCore")) {
+ $result = system "xcodebuild", "-project", "$dir.xcodeproj", @options, "-target", "$dir-no-SVG";
} else {
$result = system "xcodebuild", "-project", "$dir.xcodeproj", @options;
}
More information about the webkit-changes
mailing list