On Thu, 24 Jun 2004 19:31:51 -0400, muppet wrote: > WriteMakefile ( > NAME => 'Foo', > OBJECT => qw(Foo$(OBJ_EXT) extrafoo$(OBJ_EXT) otherfoo($OBJ_EXT)), > );
OBJECT isn't a list, and if it was, you'd need [] around it. Try this instead: WriteMakefile ( NAME => 'Foo', OBJECT => 'Foo$(OBJ_EXT) extrafoo$(OBJ_EXT) otherfoo($OBJ_EXT)', ); -- Peter Haworth [EMAIL PROTECTED] "Unicode is a scary story that mothers tell their children so they won't grow up to be ISO committee members." -- Chip Salzenberg