Title: [183620] trunk/Tools
Revision
183620
Author
commit-qu...@webkit.org
Date
2015-04-29 23:43:57 -0700 (Wed, 29 Apr 2015)

Log Message

Should no longer need to worry about very old versions of Xcode
https://bugs.webkit.org/show_bug.cgi?id=144437

Patch by Joseph Pecoraro <pecor...@apple.com> on 2015-04-29
Reviewed by Dan Bernstein.

* Scripts/check-for-exit-time-destructors:
* Scripts/check-for-global-initializers:
* Scripts/check-for-weak-vtables-and-externals:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (183619 => 183620)


--- trunk/Tools/ChangeLog	2015-04-30 06:37:15 UTC (rev 183619)
+++ trunk/Tools/ChangeLog	2015-04-30 06:43:57 UTC (rev 183620)
@@ -1,5 +1,16 @@
 2015-04-29  Joseph Pecoraro  <pecor...@apple.com>
 
+        Should no longer need to worry about very old versions of Xcode
+        https://bugs.webkit.org/show_bug.cgi?id=144437
+
+        Reviewed by Dan Bernstein.
+
+        * Scripts/check-for-exit-time-destructors:
+        * Scripts/check-for-global-initializers:
+        * Scripts/check-for-weak-vtables-and-externals:
+
+2015-04-29  Joseph Pecoraro  <pecor...@apple.com>
+
         REGRESSION(183583): [Mac] make without SDKROOT has issues
         https://bugs.webkit.org/show_bug.cgi?id=144431
 

Modified: trunk/Tools/Scripts/check-for-exit-time-destructors (183619 => 183620)


--- trunk/Tools/Scripts/check-for-exit-time-destructors	2015-04-30 06:37:15 UTC (rev 183619)
+++ trunk/Tools/Scripts/check-for-exit-time-destructors	2015-04-30 06:43:57 UTC (rev 183620)
@@ -46,9 +46,6 @@
 my $coverageBuild = $ENV{'WEBKIT_COVERAGE_BUILD'};
 my $debugRoot = $ENV{'WEBKIT_DEBUG_ROOT'};
 
-$arch = $ENV{'NATIVE_ARCH'} if !$arch; # for Xcode 2.1, which does not have CURRENT_ARCH
-$variant = "normal" if !$variant; # for Xcode 2.1, which does not have CURRENT_VARIANT
-
 my $executablePath = "$ENV{'TARGET_BUILD_DIR'}/$ENV{'EXECUTABLE_PATH'}";
 
 my $buildTimestampPath = $ENV{'TARGET_TEMP_DIR'} . "/" . basename($0) . ".timestamp";

Modified: trunk/Tools/Scripts/check-for-global-initializers (183619 => 183620)


--- trunk/Tools/Scripts/check-for-global-initializers	2015-04-30 06:37:15 UTC (rev 183619)
+++ trunk/Tools/Scripts/check-for-global-initializers	2015-04-30 06:43:57 UTC (rev 183620)
@@ -46,9 +46,6 @@
 my $coverageBuild = $ENV{'WEBKIT_COVERAGE_BUILD'};
 my $debugRoot = $ENV{'WEBKIT_DEBUG_ROOT'};
 
-$arch = $ENV{'NATIVE_ARCH'} if !$arch; # for Xcode 2.1, which does not have CURRENT_ARCH
-$variant = "normal" if !$variant; # for Xcode 2.1, which does not have CURRENT_VARIANT
-
 my $executablePath = "$ENV{'TARGET_BUILD_DIR'}/$ENV{'EXECUTABLE_PATH'}";
 
 my $buildTimestampPath = $ENV{'TARGET_TEMP_DIR'} . "/" . basename($0) . ".timestamp";

Modified: trunk/Tools/Scripts/check-for-weak-vtables-and-externals (183619 => 183620)


--- trunk/Tools/Scripts/check-for-weak-vtables-and-externals	2015-04-30 06:37:15 UTC (rev 183619)
+++ trunk/Tools/Scripts/check-for-weak-vtables-and-externals	2015-04-30 06:43:57 UTC (rev 183620)
@@ -45,9 +45,6 @@
 my $coverageBuild = $ENV{'WEBKIT_COVERAGE_BUILD'};
 my $debugRoot = $ENV{'WEBKIT_DEBUG_ROOT'};
 
-$arch = $ENV{'NATIVE_ARCH'} if !$arch; # for Xcode 2.1, which does not have CURRENT_ARCH
-$variant = "normal" if !$variant; # for Xcode 2.1, which does not have CURRENT_VARIANT
-
 my $executablePath = "$ENV{'TARGET_BUILD_DIR'}/$ENV{'EXECUTABLE_PATH'}";
 
 my $buildTimestampPath = $ENV{'TARGET_TEMP_DIR'} . "/" . basename($0) . ".timestamp";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to