From: Juergen Boemmels [mailto:[EMAIL PROTECTED]]
>
> But after looking a little more closer I found this:
> config/gen/makefiles.pl:
[...]
>   system("$^X -pi -e's/ -Wwrite-strings//' languages/imcc/Makefile");

One thing that immediately looks wrong is:

  perl -e '...'

Win32 doesn't like that. It needs double-quotes.

  >perl -e 'print 1'
  Can't find string terminator "'" anywhere before EOF at -e line 1.

Try modifying this file to use:

  perl -e "..."

instead...

--
Garrett Goebel
IS Development Specialist

ScriptPro                   Direct: 913.403.5261
5828 Reeds Road               Main: 913.384.1008
Mission, KS 66202              Fax: 913.384.2180
www.scriptpro.com          [EMAIL PROTECTED]

Reply via email to