Title: [164675] branches/safari-537.75-branch/Source/WTF
Revision
164675
Author
[email protected]
Date
2014-02-25 15:02:52 -0800 (Tue, 25 Feb 2014)

Log Message

Unreviewed build fix.

* WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py: Handle unset 'WEBKIT_LIBRARIES' properly
since this is expected to be unset in the production build environmenet.

Modified Paths

Diff

Modified: branches/safari-537.75-branch/Source/WTF/ChangeLog (164674 => 164675)


--- branches/safari-537.75-branch/Source/WTF/ChangeLog	2014-02-25 22:31:14 UTC (rev 164674)
+++ branches/safari-537.75-branch/Source/WTF/ChangeLog	2014-02-25 23:02:52 UTC (rev 164675)
@@ -1,3 +1,10 @@
+2014-02-25  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix.
+
+        * WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py: Handle unset 'WEBKIT_LIBRARIES' properly
+        since this is expected to be unset in the production build environmenet.
+
 2014-02-05  Brent Fulgham  <[email protected]>
 
         Merge in build correction to prevent needless "rebuild all" builds.

Modified: branches/safari-537.75-branch/Source/WTF/WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py (164674 => 164675)


--- branches/safari-537.75-branch/Source/WTF/WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py	2014-02-25 22:31:14 UTC (rev 164674)
+++ branches/safari-537.75-branch/Source/WTF/WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py	2014-02-25 23:02:52 UTC (rev 164675)
@@ -9,6 +9,9 @@
 # It's fragile to rely on the location of this script to find the top-level
 # source directory.
 TOP_LEVEL_DIRECTORY = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
+if not os.environ.has_key('WEBKIT_LIBRARIES'):
+    exit
+
 WEBKIT_LIBRARIES = os.environ['WEBKIT_LIBRARIES'];
 
 def main():
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to