summaryrefslogtreecommitdiff
path: root/Master/texmf/scripts/xindy
diff options
context:
space:
mode:
authorVladimir Volovich <vvv@vsu.ru>2008-05-10 06:09:34 +0000
committerVladimir Volovich <vvv@vsu.ru>2008-05-10 06:09:34 +0000
commit63f6248194e102fd6fd0b0a06fb36d98bd6e4c28 (patch)
tree2b97d683482d8952d94636ed5246dcc2f9661043 /Master/texmf/scripts/xindy
parent3faea455168abd154168997d2b79fe677fb2afa0 (diff)
frontend command name on woe32 changed from xindy.texlua to xindy.bat
git-svn-id: svn://tug.org/texlive/trunk@8002 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf/scripts/xindy')
-rwxr-xr-xMaster/texmf/scripts/xindy/texindy.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/texmf/scripts/xindy/texindy.pl b/Master/texmf/scripts/xindy/texindy.pl
index f0d85fd7777..47b1144da99 100755
--- a/Master/texmf/scripts/xindy/texindy.pl
+++ b/Master/texmf/scripts/xindy/texindy.pl
@@ -364,8 +364,8 @@ if ( -f "$cmd_dir/xindy" && -x _ ) {
$xindy = "$cmd_dir/xindy";
} elsif ( -f "$cmd_dir/xindy.pl" && -x _ ) {
$xindy = "$cmd_dir/xindy.pl";
-} elsif ( -f "$ENV{SELFAUTOLOC}/xindy.texlua" ) { # woe32
- $xindy = "$ENV{SELFAUTOLOC}/xindy.texlua";
+} elsif ( -f "$ENV{SELFAUTOLOC}/xindy.bat" ) { # woe32
+ $xindy = "$ENV{SELFAUTOLOC}/xindy.bat";
$cmd_dir = $ENV{"SELFAUTOLOC"};
} else {
die "$cmd: cannot locate xindy\n";
@@ -392,8 +392,8 @@ unshift (@ARGV, '-I', $input_markup);
print "Calling xindy as: $xindy @ARGV\n" if (grep /^script$/, @debug);
-if ($xindy =~ m,\.texlua$,) {
- system("texlua", $xindy, @ARGV);
+if ($xindy =~ m,\.bat$,) {
+ system($xindy, @ARGV);
exit $? if $? != -1;
} else {
exec $xindy, @ARGV;