Title: [152381] trunk/Source/WTF
- Revision
- 152381
- Author
- [email protected]
- Date
- 2013-07-03 16:38:27 -0700 (Wed, 03 Jul 2013)
Log Message
[Windows] Unreviewed build correction.
* WTF.vcxproj/copy-files.cmd: Limit path (for this file) to DOS-only to avoid
the Cygwin variant of rmdir from being used.
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (152380 => 152381)
--- trunk/Source/WTF/ChangeLog 2013-07-03 23:13:46 UTC (rev 152380)
+++ trunk/Source/WTF/ChangeLog 2013-07-03 23:38:27 UTC (rev 152381)
@@ -1,3 +1,10 @@
+2013-07-03 Brent Fulgham <[email protected]>
+
+ [Windows] Unreviewed build correction.
+
+ * WTF.vcxproj/copy-files.cmd: Limit path (for this file) to DOS-only to avoid
+ the Cygwin variant of rmdir from being used.
+
2013-07-03 Commit Queue <[email protected]>
Unreviewed, rolling out r152356.
Modified: trunk/Source/WTF/WTF.vcxproj/copy-files.cmd (152380 => 152381)
--- trunk/Source/WTF/WTF.vcxproj/copy-files.cmd 2013-07-03 23:13:46 UTC (rev 152380)
+++ trunk/Source/WTF/WTF.vcxproj/copy-files.cmd 2013-07-03 23:38:27 UTC (rev 152381)
@@ -1,5 +1,8 @@
@echo off
+setlocal
+REM limit path to DOS-only for this file to avoid confusion between DOS rmdir and Cygwin's variant
+set PATH=%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem
set PrivateHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private
if "%1" EQU "clean" goto :clean
@@ -34,3 +37,4 @@
echo Deleting copied files...
if exist "%PrivateHeadersDirectory%" rmdir /s /q "%PrivateHeadersDirectory%" >NUL
+endlocal
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes