Title: [151935] trunk/Source/WebCore
Revision
151935
Author
achristen...@apple.com
Date
2013-06-24 16:34:46 -0700 (Mon, 24 Jun 2013)

Log Message

Added /d option to xcopy to prevent unnecessary copying and compiling.
https://bugs.webkit.org/show_bug.cgi?id=117951

Reviewed by Brent Fulgham.

* WebCore.vcxproj/WebCorePreBuild.cmd:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151934 => 151935)


--- trunk/Source/WebCore/ChangeLog	2013-06-24 23:27:02 UTC (rev 151934)
+++ trunk/Source/WebCore/ChangeLog	2013-06-24 23:34:46 UTC (rev 151935)
@@ -1,3 +1,12 @@
+2013-06-24  Alex Christensen  <achristen...@apple.com>
+
+        Added /d option to xcopy to prevent unnecessary copying and compiling.
+        https://bugs.webkit.org/show_bug.cgi?id=117951
+
+        Reviewed by Brent Fulgham.
+
+        * WebCore.vcxproj/WebCorePreBuild.cmd:
+
 2013-06-24  Simon Fraser  <simon.fra...@apple.com>
 
         Fix various crashes on sites with fixed backgrounds

Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd (151934 => 151935)


--- trunk/Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd	2013-06-24 23:27:02 UTC (rev 151934)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd	2013-06-24 23:34:46 UTC (rev 151935)
@@ -6,7 +6,7 @@
 echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
 set AngleHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private
 mkdir "%AngleHeadersDirectory%" 2>NUL
-xcopy /y /s "%ProjectDir%..\..\ThirdParty\ANGLE\include" "%AngleHeadersDirectory%"
-xcopy /y "%AngleHeadersDirectory%\KHR\khrplatform.h" "%AngleHeadersDirectory%"
-xcopy /y /s "%ProjectDir%..\platform\graphics\win\GL" "%AngleHeadersDirectory%"
+xcopy /y /d /s "%ProjectDir%..\..\ThirdParty\ANGLE\include" "%AngleHeadersDirectory%"
+xcopy /y /d "%AngleHeadersDirectory%\KHR\khrplatform.h" "%AngleHeadersDirectory%"
+xcopy /y /d /s "%ProjectDir%..\platform\graphics\win\GL" "%AngleHeadersDirectory%"
 exit /b
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to