ExternalFile — specify external dump filename
Specify "external" output filename. Default is
external.structure in global RunDir.
For the directive to have any effect, External must be enabled.
For discussion and examples of connecting Interchange to external programs, see glossary entry external.
Interchange 5.7.0:
Source: lib/Vend/Config.pm
Line 518
['ExternalFile', 'root_dir', "$Global::RunDir/external.structure"],
Source: lib/Vend/Config.pm
Line 3898 (context shows lines 3898-3905)
sub parse_root_dir {
my($var, $value) = @_;
return '' unless $value;
$value = "$Global::VendRoot/$value"
unless file_name_is_absolute($value);
$value =~ s./+$..;
return $value;
}