diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/context/perl/texexec.pl | 3 | ||||
-rw-r--r-- | scripts/context/ruby/ctxtools.rb | 2 |
2 files changed, 3 insertions, 2 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; diff --git a/scripts/context/ruby/ctxtools.rb b/scripts/context/ruby/ctxtools.rb index 59243aee0..5af38f25f 100644 --- a/scripts/context/ruby/ctxtools.rb +++ b/scripts/context/ruby/ctxtools.rb @@ -153,7 +153,7 @@ class Commands list.i_load('cd:variable', variables) list.i_load('cd:constant', constants) - list.i_load('cd:command' , strings) + # list.i_load('cd:command' , strings) list.i_load('cd:element' , strings) report("loading #{intfile}") |