summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2007-06-28 09:21:34 +0000
committerNorbert Preining <preining@logic.at>2007-06-28 09:21:34 +0000
commitbd5eb7b6ea629f57c2f9b32fa9e650d25a3f2a4f (patch)
tree0953f033ef88fd4d6ce3c2f841de3997cba1fb5c /Master/tlpkg/TeXLive
parentf82d752fb1943968e50950f963a3b1623b417963 (diff)
now also match .dll like .exe and .bat, again update .tlpsrc, man page
of TLPSRC. texlive.tlpdb didn't change (good) git-svn-id: svn://tug.org/texlive/trunk@4521 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r--Master/tlpkg/TeXLive/TLPSRC.pm6
-rw-r--r--Master/tlpkg/TeXLive/TLTREE.pm4
2 files changed, 5 insertions, 5 deletions
diff --git a/Master/tlpkg/TeXLive/TLPSRC.pm b/Master/tlpkg/TeXLive/TLPSRC.pm
index 4d65bf1fa24..20326a78872 100644
--- a/Master/tlpkg/TeXLive/TLPSRC.pm
+++ b/Master/tlpkg/TeXLive/TLPSRC.pm
@@ -584,11 +584,11 @@ of included files.
In case the string C<${ARCH}> occurs in one C<binpattern> it is
automatically expanded to the respective architecture.
-=head2 bat/exe for win32
+=head2 bat/exe/dll for win32
For C<binpatterns> of the form C<f bin/win32/foobar> (i.e., also for a
-binpattern of the form C<f bin/${ARCH}/foobar>) files F<foobar.bat> and
-F<foobar.exe> are also matched.
+binpattern of the form C<f bin/${ARCH}/foobar>) files F<foobar.bat>,
+F<foobar.dll>, and F<foobar.exe> 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 1246a6893a9..4d8ff67b675 100644
--- a/Master/tlpkg/TeXLive/TLTREE.pm
+++ b/Master/tlpkg/TeXLive/TLTREE.pm
@@ -243,10 +243,10 @@ sub _get_files_matching_glob_pattern {
}
}
if ($dirpart =~ m@^bin/win32@) {
- # for arch=win32 under bin we also want to match .bat and .exe files
+ # for arch=win32 under bin we also want to match .dll, .bat, .exe files
foreach my $f (@candfiles) {
&TeXLive::TLUtils::debug("matching $f in $dirpart via glob $globline.{bat/exe}\n");
- if ($f =~ /^$basepart\.(bat|exe)$/) {
+ if ($f =~ /^$basepart\.(bat|exe|dll)$/) {
&TeXLive::TLUtils::debug("hit: globline=$globline, $dirpart/$f\n");
push @returnfiles, "$dirpart/$f";
}