summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLTREE.pm
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-02-08 08:33:50 +0000
committerNorbert Preining <preining@logic.at>2008-02-08 08:33:50 +0000
commit4fbb12efeffdffdf5a17b95f132ed4cc06300586 (patch)
treea8a6d0719cbf2fc547fd6348cc2636baaa80063e /Master/tlpkg/TeXLive/TLTREE.pm
parentbe512facf9adc36690d027b9d19ce3a2d0d53fe5 (diff)
match also .texlua with binfiles on win32
git-svn-id: svn://tug.org/texlive/trunk@6529 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLTREE.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm4
1 files changed, 2 insertions, 2 deletions
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";