Title: [193647] trunk
Revision
193647
Author
achristen...@apple.com
Date
2015-12-07 13:09:55 -0800 (Mon, 07 Dec 2015)

Log Message

Fix internal Windows build
https://bugs.webkit.org/show_bug.cgi?id=151950

Reviewed by Brent Fulgham.

* Source/cmake/tools/scripts/auto-version.pl:

Modified Paths

Diff

Modified: trunk/ChangeLog (193646 => 193647)


--- trunk/ChangeLog	2015-12-07 20:57:35 UTC (rev 193646)
+++ trunk/ChangeLog	2015-12-07 21:09:55 UTC (rev 193647)
@@ -1,3 +1,12 @@
+2015-12-07  Alex Christensen  <achristen...@webkit.org>
+
+        Fix internal Windows build
+        https://bugs.webkit.org/show_bug.cgi?id=151950
+
+        Reviewed by Brent Fulgham.
+
+        * Source/cmake/tools/scripts/auto-version.pl:
+
 2015-12-01  Yusuke Suzuki  <utatane....@gmail.com>
 
         [ES6] Implement LLInt/Baseline Support for ES6 Generators and enable this feature

Modified: trunk/Source/cmake/tools/scripts/auto-version.pl (193646 => 193647)


--- trunk/Source/cmake/tools/scripts/auto-version.pl	2015-12-07 20:57:35 UTC (rev 193646)
+++ trunk/Source/cmake/tools/scripts/auto-version.pl	2015-12-07 21:09:55 UTC (rev 193647)
@@ -34,13 +34,7 @@
 
 die "You must supply an output path as the argument.\n" if ($#ARGV < 0);
 
-my $thisDirectory;
-my $WEBKIT_LIBRARIES = $ENV{'WEBKIT_LIBRARIES'};
-if (defined $WEBKIT_LIBRARIES) {
-    $thisDirectory = File::Spec->catfile($WEBKIT_LIBRARIES, 'tools', 'scripts');
-} else {
-    $thisDirectory = dirname(abs_path($0));
-}
+my $thisDirectory = dirname(abs_path($0));
 
 my $FALLBACK_VERSION_PATH = File::Spec->catfile($thisDirectory, 'VERSION');
 open(FALLBACK_VERSION_FILE, '<', $FALLBACK_VERSION_PATH) or die "Unable to open $FALLBACK_VERSION_PATH: $!";
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to