Hi Iain.
>
>
>
> * Dave Rolsky ([EMAIL PROTECTED]) [10 Aug 2003 00:38]:
> > On Sat, 9 Aug 2003, Iain Truskett wrote:
>
> > > This make sense? make's default $(CC) may have no relation to
> > > the one Perl was compiled with, so shouldn't we use what
> > > knowledge we can get?
> > >
[snipped]
> Good question. Not sure. At the very least it means it gets it correct
> for one Solaris box I have access to.
>
[snipped]
How about something like this:
use strict;
use warnings;
use Config;
print $Config{make};
on my system this prints:
F:\scripts>x.pl
nmake
maybe something like this may be helpful.
> cheers,
> --
> Iain.
Ron Hill