Hi list.
On Windows which MinGW or Cygwin is installed, "rmdir" in Make_dos.mak invokes MinGW/Cygwin's "rmdir.exe". It expected to invoke built-in "rmdir" of cmd.exe. We can avoid this by just using "rd" instead "rmdir" easily. Please check attached patch. Thanks. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
# HG changeset patch # Parent 99c9dd23883f4503603cd45db133d9e3306eb8f3 diff -r 99c9dd23883f -r 07ffa02780dc src/testdir/Make_dos.mak --- a/src/testdir/Make_dos.mak Sat Jun 08 23:30:04 2013 +0200 +++ b/src/testdir/Make_dos.mak Sun Jun 09 08:31:07 2013 +0900 @@ -77,5 +77,5 @@ -del X* -del X*.* -del test.ok - -rmdir /s /q Xfind + -rd /s /q Xfind -if exist viminfo del viminfo
