diff options
Diffstat (limited to 'scripts/context/perl/texexec.pl')
-rw-r--r-- | scripts/context/perl/texexec.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/context/perl/texexec.pl b/scripts/context/perl/texexec.pl index 277e2f810..aa62954ca 100644 --- a/scripts/context/perl/texexec.pl +++ b/scripts/context/perl/texexec.pl @@ -2254,10 +2254,11 @@ sub LocatedFormatPath { } if ($UseEnginePath && ($FormatPath ne '' && ($FormatPath !~ /$EnginePath\/$/))) { - $FormatPath .= $EnginePath . '/' ; + $FormatPath .= $EnginePath ; unless (-d $FormatPath) { mkdir $FormatPath ; } + $FormatPath .= '/' ; } return $FormatPath; |