At 22:43 14/06/2005 -0700, you wrote:
# New Ticket Created by Clement Cherlin
# Please include the string: [perl #36290]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/rt3/Ticket/Display.html?id=36290 >
François PERRAD wrote:
>
> Please, revert this patch (r8298)
> With MinGW & cmd.exe :
> $ make test
> perl.exe t\harness --gc-debug --running-make-test
t\library\*.t
> t\op\*.t t\pmc\*.t t\native_pbc\*.t imcc\t\*\*.t t\dynclass\*.t
> t\src\*.t t\perl\*.t
> FAILED--no tests were run for some reason.
>
> In its initial mail, Clement Cherlin wrote : "I still haven't gotten
> compilation to finish ..."
>
> Francois Perrad.
>
Not to worry, I have a one-line fix for that problem. Mingw32-make
treats '\*' as a backslash escaping an asterisk, so it turns that into
just '*'. I changed lib/Parrot/Configure/Step.pm to substitute '\\*'
for '\*'. I can now run 'make test'.
I have only tested this patch with mingw32-make, so I would appreciate
it if others could test it with nmake / dmake to make sure they don't
choke on the extra backslashes.
leo,
this patch (#36290) works for me.
There are 2 choices :
1) revert the patch that creates the revision 8298
2) not revert and add its complement ie. #36290
But it's not possible to stay in the current position.
François Perrad