> From: "Tom Kronmiller" <[EMAIL PROTECTED]>
> Date: Thu, 1 Dec 2005 16:29:44 -0500
> Cc: 
> 
> A while ago I was having this exact symptom in a similar context: on windows, 
> running gmake through a perl-based wrapper script.
> Ultimately it turned out (and I have no idea why) that when the perl script 
> included a back-tick command
>     $x = `some command`;
>     ....
>     system("gmake ....");
> then the problem would manifest, but not if the backtick was disabled by 
> something like
>     system("some command > tmpfile");
>     open(file "< tmpfile"); read, ... into $x;
>     ...
>     system("gmake ....");

It sounds like something is wrong with redirecting a standard handle,
but I need help to understand the details: what handle is the
offending one and why.  Can you try debugging this?


_______________________________________________
Make-w32 mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/make-w32

Reply via email to