On 5 Jun 2008, at 16:37, David Golden wrote:
On Thu, Jun 5, 2008 at 11:14 AM, Andy Armstrong <[EMAIL PROTECTED]> wrote:
So Makefile.PL doesn't see the input at all - I guess it's not connected to
STDIN for some reason.

WTF?!?

:)

OK.  Try these:

$ perl Makefile.PL | tee foo.out

$ perl Makefile.PL | ptee foo.out

$ perl Makefile.PL 2>&1 | tee foo.out

$ perl Makefile.PL 2>&1 | ptee foo.out

$ perl -we 'system("$^X Makefile.PL")' 2>&1 | ptee foo.out

You might check foo.out to see what shows up.


All OK and in each case foo.out contains sane stuff.

--
Andy Armstrong, Hexten




Reply via email to