in reply to Re^3: pp (PAR-Packer) - how to access included data files
in thread pp (PAR-Packer) - how to access included data files
In my case, the easiest approach was to doctor the @ARGV before processing it, as follows:
if (exists $ENV{PAR_TEMP}){ # running via PAR/pp push @ARGV, "$ENV{PAR_TEMP}/inc/lex.dict"; }
|
|---|