[Bioperl-l] Bio::Root::Version functionality is in.
Aaron J Mackey
ajm6q at virginia.edu
Mon Mar 10 09:35:50 EST 2003
It's an interpolation issue:
`perl -pi -e 's/@@VERSION@@/foo/;' $_` isn't right, since @VERSION doesn't
exist
`perl -pi -e 's/\@\@VERSION\@\@/foo/;' $_` also isn't quite right, since
what the shell sees is the first invocation above
`perl -pi -e 's/\\\@\\\@VERSION\\\@\\\@/foo;' $_` would work, if you
wanted it to.
> I also modified Makefile.PL, everything seems to work, except that
> bio*.pod.bak files are automatically created, don't know how to get around
> this.
Huh. the -i switch without an extension should leave .bak files.
-Aaron
More information about the Bioperl-l
mailing list