diff options
author | Norbert Preining <preining@logic.at> | 2008-04-19 10:22:03 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-04-19 10:22:03 +0000 |
commit | ae800c9ec7b6edbb316da1a84bb10161410302f6 (patch) | |
tree | bc1faa709fefb32faf2e83950bb0e33faaefe3d9 /Master/tlpkg/TeXLive/TLConfig.pm | |
parent | ba27f568a1af1d55353f4deb35d9d839fc762287 (diff) |
2 big changes:
- tlpdb initialization tries the lzma compressed one from the net
- download_file honors $TL_DOWNLOAD_PROG and $TL_DOWNLOAD_ARGS
git-svn-id: svn://tug.org/texlive/trunk@7511 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLConfig.pm')
-rw-r--r-- | Master/tlpkg/TeXLive/TLConfig.pm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLConfig.pm b/Master/tlpkg/TeXLive/TLConfig.pm index f7dbc6c8cda..557098e1163 100644 --- a/Master/tlpkg/TeXLive/TLConfig.pm +++ b/Master/tlpkg/TeXLive/TLConfig.pm @@ -25,6 +25,7 @@ BEGIN { $DiskArchive $TeXLiveURL $TeXLiveAlternativeURL + $DefaultWgetArgs ); @EXPORT = @EXPORT_OK; } @@ -61,6 +62,12 @@ our $TeXLiveAlternativeURL; #our $TeXLiveURL = 'http://mirror.ctan.org/systems/texlive/tlnet/2008'; #our $TeXLiveAlternativeURL = 'http://www.ctan.org/systems/texlive/tlnet/2008'; + +# defualt wget args +# we assume that the FIRST argument given AFTER the default args is the +# destination, ie where to put the file! +our $DefaultWgetArgs = "--tries=2 --timeout=60 -q -O"; + 1; |