summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/tlpkg/TeXLive/TLPSRC.pm4
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm4
2 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm
index 505d90196bd..432119e044e 100644
--- a/Master/tlpkg/TeXLive/TLPSRC.pm
+++ b/Master/tlpkg/TeXLive/TLPSRC.pm
@@ -633,11 +633,11 @@ language are allowed:
In case the string C<${>I<ARCH>} occurs in one C<binpattern> it is
automatically expanded to the respective architecture.
-=item C<bat/exe/dll> for win32
+=item C<bat/exe/dll/texlua> for win32
For C<binpattern>s of the form C<f bin/win32/foobar> (i.e., also for a
binpattern of the form C<f bin/${ARCH}/foobar>) files C<foobar.bat>,
-C<foobar.dll>, and C<foobar.exe> are also matched.
+C<foobar.dll>, C<foobar.exe>, and C<foobar.texlua> are also matched.
The above two properties allows to capture the binaries for all
architectures in one binpattern
diff --git a/Master/tlpkg/TeXLive/TLTREE.pm b/Master/tlpkg/TeXLive/TLTREE.pm
index 7b9c70d7abc..068eaa804c6 100644
--- a/Master/tlpkg/TeXLive/TLTREE.pm
+++ b/Master/tlpkg/TeXLive/TLTREE.pm
@@ -258,8 +258,8 @@ sub _get_files_matching_glob_pattern {
if ($dirpart =~ m@^bin/win32@) {
# for arch=win32 under bin we also want to match .dll, .bat, .exe files
foreach my $f (@candfiles) {
- tllog($::LOG_DDDEBUG, "matching $f in $dirpart via glob $globline.{bat/exe}\n");
- if ($f =~ /^$basepart\.(bat|exe|dll)$/) {
+ tllog($::LOG_DDDEBUG, "matching $f in $dirpart via glob $globline.{bat/exe/texlua}\n");
+ if ($f =~ /^$basepart\.(bat|exe|dll|texlua)$/) {
tllog($::LOG_DDDEBUG, "hit: globline=$globline, $dirpart/$f\n");
if ("$dirpart" eq ".") {
push @returnfiles, "$f";