Hello and thank you for File::SearchPath 0.05,
On VMS path_sep is pipe "|".
perl -e "use Config;print $Config{path_sep}"
|
When it is used with split in _env_to_dirs it needs to be escaped thus:
<< return split(/$ps/, $path);
Show quoted text
>> return split(/\Q$ps\E/, $path);
Otherwise for example:
perl -e "print join ',' , split(/|/,'abc|def')"
a,b,c,|,d,e,f
perl -e "print join ',' , split(/\Q|\E/,'abc|def')"
abc,def
Cheers,
Peter (Stig) Edwards