diff options
author | Norbert Preining <preining@logic.at> | 2008-06-19 08:57:43 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-06-19 08:57:43 +0000 |
commit | bbe4db8ae8b9d80260032ab584d3d475c8d6b8b1 (patch) | |
tree | 875f94cc8fdb371863e12627126d4b4bc4f3e22b /Master | |
parent | 733b44e4d94bffc184a6d4ea264a930667fd35b3 (diff) |
TLConfig: add a regexp for those packages that need special win32 update treatment
git-svn-id: svn://tug.org/texlive/trunk@8870 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index 248f24eed3d..f81a171951b 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -25,6 +25,7 @@ BEGIN { $DiskArchive $TeXLiveURL $TeXLiveAlternativeURL + $WinSpecialUpdatePackagesRegexp ); @EXPORT = @EXPORT_OK; } @@ -59,6 +60,11 @@ our $TeXLiveURL = 'http://mirror.ctan.org/systems/texlive/tlnet/tldev'; our $TeXLiveAlternativeURL; #our $TeXLiveAlternativeURL = 'http://www.ctan.org/systems/texlive/tlnet/2008'; + +our $WinSpecialUpdatePackagesRegexp = + '^(texlive\.infra|luatex|bin-tlperl\.win32$|texlive\.infra|bin-texlive)'; + + 1; @@ -120,6 +126,11 @@ The assumed block size, currently 4k. These values specify where to find packages. +=item C<$TeXLive::TLConfig::WinSpecialUpdatePackagesRegexp> + +A regexp matching all those packages which cannot be normally updated +because they contain files which are open during the update process. + =back =head1 SEE ALSO |