Re: Windows patches for the next release

Denis Excoffier <[email protected]> Wed, 02 Oct 2013 10:31:33 +0200
Newsgroups gmane.comp.gnu.make.windows
Message-ID <[email protected]>
On 2013-10-02 09:34, Denis Excoffier wrote:
> The abspath error is gone. However, output-sync, recursion, MAKE 
> remain.
> Included work.tar.xz

I can also observe that with the following patch (below), make check
runs with no error anymore (of course, this patch is not for inclusion
in HEAD).

% cat patch
diff -uNrp make-3.99.93-original/tests/run_make_tests.pl 
make-3.99.93-patched/tests/run_make_tests.pl
--- make-3.99.93-original/tests/run_make_tests.pl       2013-09-22 
23:10:09.000000000 +0159
+++ make-3.99.93-patched/tests/run_make_tests.pl        2013-10-02 
10:19:43.081853900 +0159
@@ -353,7 +353,7 @@ sub set_more_defaults

     if (index ($make_path, ":") != 1 && index ($make_path, "/") > 0)
     {
-      $mkpath = "$pwd$pathsep$make_path";
+      $mkpath = $make_path;
     }
     else
     {
%

Denis Excoffier.