Title: [164893] branches/safari-537.75-branch/Source
Revision
164893
Author
[email protected]
Date
2014-02-28 16:22:54 -0800 (Fri, 28 Feb 2014)

Log Message

Unreviewed build fix.
<rdar://problem/16197002>

Source/_javascript_Core: 

* _javascript_Core.vcxproj/_javascript_Core.proj: Remove trailing
slash from path names, as this was causing multiple arguments
to be concatenated together (the whitespace was getting escaped
by the slash.)

Source/WebCore: 

* WebCore.vcxproj/WebCore.proj: Remove trailing
slash from path names, as this was causing multiple arguments
to be concatenated together (the whitespace was getting escaped
by the slash.)

Source/WTF: 

* WTF.vcxproj/WTF.proj: Remove trailing
slash from path names, as this was causing multiple arguments
to be concatenated together (the whitespace was getting escaped
by the slash.)
* WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py:
Check for presence of RC_XBS in environment, and exit since
this logic is not needed for 'official' builds.

Modified Paths

Diff

Modified: branches/safari-537.75-branch/Source/_javascript_Core/ChangeLog (164892 => 164893)


--- branches/safari-537.75-branch/Source/_javascript_Core/ChangeLog	2014-02-28 23:55:24 UTC (rev 164892)
+++ branches/safari-537.75-branch/Source/_javascript_Core/ChangeLog	2014-03-01 00:22:54 UTC (rev 164893)
@@ -1,3 +1,13 @@
+2014-02-28  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix.
+        <rdar://problem/16197002>
+
+        * _javascript_Core.vcxproj/_javascript_Core.proj: Remove trailing
+        slash from path names, as this was causing multiple arguments
+        to be concatenated together (the whitespace was getting escaped
+        by the slash.)
+
 2014-01-27  Brent Fulgham  <[email protected]>
 
         Merge r162723.

Modified: branches/safari-537.75-branch/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.proj


(Binary files differ)

Modified: branches/safari-537.75-branch/Source/WTF/ChangeLog (164892 => 164893)


--- branches/safari-537.75-branch/Source/WTF/ChangeLog	2014-02-28 23:55:24 UTC (rev 164892)
+++ branches/safari-537.75-branch/Source/WTF/ChangeLog	2014-03-01 00:22:54 UTC (rev 164893)
@@ -1,5 +1,18 @@
 2014-02-28  Brent Fulgham  <[email protected]>
 
+        Unreviewed build fix.
+        <rdar://problem/16197002>
+
+        * WTF.vcxproj/WTF.proj: Remove trailing
+        slash from path names, as this was causing multiple arguments
+        to be concatenated together (the whitespace was getting escaped
+        by the slash.)
+        * WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py:
+        Check for presence of RC_XBS in environment, and exit since
+        this logic is not needed for 'official' builds.
+
+2014-02-28  Brent Fulgham  <[email protected]>
+
         Unreviewed build fix: Pass build environment to sub-processes via command line.
         <rdar://problem/16197002>
 

Modified: branches/safari-537.75-branch/Source/WTF/WTF.vcxproj/WTF.proj


(Binary files differ)

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


--- branches/safari-537.75-branch/Source/WTF/WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py	2014-02-28 23:55:24 UTC (rev 164892)
+++ branches/safari-537.75-branch/Source/WTF/WTF.vcxproj/work-around-vs-dependency-tracking-bugs.py	2014-03-01 00:22:54 UTC (rev 164893)
@@ -12,6 +12,10 @@
 if not os.environ.has_key('WEBKIT_LIBRARIES'):
     exit
 
+# Don't use this script outside of WebKit development builds
+if os.environ.has_key('RC_XBS'):
+    exit
+
 WEBKIT_LIBRARIES = os.environ['WEBKIT_LIBRARIES'];
 
 def main():

Modified: branches/safari-537.75-branch/Source/WebCore/ChangeLog (164892 => 164893)


--- branches/safari-537.75-branch/Source/WebCore/ChangeLog	2014-02-28 23:55:24 UTC (rev 164892)
+++ branches/safari-537.75-branch/Source/WebCore/ChangeLog	2014-03-01 00:22:54 UTC (rev 164893)
@@ -1,3 +1,13 @@
+2014-02-28  Brent Fulgham  <[email protected]>
+
+        Unreviewed build fix.
+        <rdar://problem/16197002>
+
+        * WebCore.vcxproj/WebCore.proj: Remove trailing
+        slash from path names, as this was causing multiple arguments
+        to be concatenated together (the whitespace was getting escaped
+        by the slash.)
+
 2014-02-25  Brent Fulgham  <[email protected]>
 
         Merge r164660

Modified: branches/safari-537.75-branch/Source/WebCore/WebCore.vcxproj/WebCore.proj


(Binary files differ)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to