> Date: Tue, 30 Aug 2005 07:34:28 -0400
> Cc: [EMAIL PROTECTED], [email protected]
> From: "Paul D. Smith" <[EMAIL PROTECTED]>
> 
> %% Eli Zaretskii <[EMAIL PROTECTED]> writes:
> 
>   ez> I think POSIX::getcwd should exist on Windows, but I cannot test where
>   ez> I'm typing this.  Can you post a short script to test that?
> 
>  perl -e 'use POSIX qw(getcwd); my $d = getcwd(); print "$d\n";'
> 
> should do it...

Works for me, although if it needs to be invoked from cmd.exe, the
stock Windows shell, you need to use ".." instead of '..', like this:

  perl -e "use POSIX qw(getcwd); my $d = getcwd(); print \"$d\n\";"

> I checked in a new version of the eval regression test yesterday that
> changes this... can you see if that works?

Will do.


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

Reply via email to