----- Original Message ----- From: "Sisyphus" <sisyph...@optusnet.com.au>
use Inline Config => DIRECTORY => '\_Inline_build';
If it makes things any easier, you might be able to avoid hard coded full paths with something like:
use Inline Config => DIRECTORY => $INC[0] . '/_Inline'; or use Inline Config => DIRECTORY => $^X . '/_Inline';Again, the '_Inline' directory would need to be placed in $INC[0] or $^X (respectively).
Cheers, Rob