Title: [171680] trunk/Source/_javascript_Core
Revision
171680
Author
bfulg...@apple.com
Date
2014-07-28 10:40:46 -0700 (Mon, 28 Jul 2014)

Log Message

[Win] Unreviewed build fix.

* _javascript_Core.vcxproj/_javascript_Core.proj: Switch from the 'Rebuild' target for MSBuild
builds to the 'Build' target to avoid a spurious 'clean' in between build steps.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (171679 => 171680)


--- trunk/Source/_javascript_Core/ChangeLog	2014-07-28 16:09:19 UTC (rev 171679)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-07-28 17:40:46 UTC (rev 171680)
@@ -1,3 +1,10 @@
+2014-07-28  Brent Fulgham  <bfulg...@apple.com>
+
+        [Win] Unreviewed build fix.
+
+        * _javascript_Core.vcxproj/_javascript_Core.proj: Switch from the 'Rebuild' target for MSBuild
+        builds to the 'Build' target to avoid a spurious 'clean' in between build steps.
+
 2014-07-27  Ryuan Choi  <ryuan.c...@samsung.com>
 
         Unreviewed build fix on the EFL port

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.proj (171679 => 171680)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.proj	2014-07-28 16:09:19 UTC (rev 171679)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_Core.proj	2014-07-28 17:40:46 UTC (rev 171680)
@@ -60,7 +60,7 @@
     <Message Text="Building $(CONFIGURATION) Solution" />
     <Error Text="DSTROOT property or environment variable must be defined." Condition="'$(DSTROOT)' == ''" />
     <Message Text="Output=$(WebKit_OutputDir)" />
-    <MSBuild Projects="@(_javascript_Core)" Properties="Configuration=$(CONFIG)" Targets="ReBuild" />
+    <MSBuild Projects="@(_javascript_Core)" Properties="Configuration=$(CONFIG)" Targets="Build" />
   </Target>
 
   <Target Name="PostBuild" AfterTargets="Build">
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to