Title: [131456] trunk/Tools
Revision
131456
Author
hausm...@webkit.org
Date
2012-10-16 07:53:00 -0700 (Tue, 16 Oct 2012)

Log Message

[Qt] Fix nmake wipeclean on Windows

Reviewed by Tor Arne Vestbø.

Delete all subdirectories and no files instead of ".".

* qmake/mkspecs/features/configure.prf:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (131455 => 131456)


--- trunk/Tools/ChangeLog	2012-10-16 14:52:57 UTC (rev 131455)
+++ trunk/Tools/ChangeLog	2012-10-16 14:53:00 UTC (rev 131456)
@@ -1,5 +1,15 @@
 2012-10-16  Simon Hausmann  <simon.hausm...@digia.com>
 
+        [Qt] Fix nmake wipeclean on Windows
+
+        Reviewed by Tor Arne Vestbø.
+
+        Delete all subdirectories and no files instead of ".".
+
+        * qmake/mkspecs/features/configure.prf:
+
+2012-10-16  Simon Hausmann  <simon.hausm...@digia.com>
+
         [Qt] Fix wipeclean on Windows
 
         Reviewed by Csaba Osztrogonác.

Modified: trunk/Tools/qmake/mkspecs/features/configure.prf (131455 => 131456)


--- trunk/Tools/qmake/mkspecs/features/configure.prf	2012-10-16 14:52:57 UTC (rev 131455)
+++ trunk/Tools/qmake/mkspecs/features/configure.prf	2012-10-16 14:53:00 UTC (rev 131456)
@@ -131,7 +131,7 @@
 
     # Add target for wiping clean the build
     wipeclean.target = wipeclean
-    win_cmd_shell: wipeclean.commands = FOR /D %%p IN (.) DO rmdir "%%p" /s /q
+    win_cmd_shell: wipeclean.commands = FOR /D %%p IN (*) DO rmdir "%%p" /s /q
     else: wipeclean.commands = $(COPY_FILE) $(MAKEFILE) .$(MAKEFILE) && rm -Rf * && $(MOVE) .$(MAKEFILE) $(MAKEFILE)
     QMAKE_EXTRA_TARGETS += wipeclean
     export(wipeclean.target)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to