On Jun 25, 2004, at 5:36 AM, Peter Haworth wrote:
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)', );
you're absolutely right; i misread the generated Makefile's 'q[]' as 'qw[]'. sorry.
-- elysse (in labor): is the head the biggest part? midwife: yes. elysse: oh, good.