diff options
author | Norbert Preining <preining@logic.at> | 2009-08-22 10:23:24 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2009-08-22 10:23:24 +0000 |
commit | 9b306a33b5b9e9d35cdb11836f8429703475b85d (patch) | |
tree | 33bb9791557b89029ffe2ea8adb28d072da59e74 | |
parent | f4e8b870d4a3649f0fee0062989e04e769c69937 (diff) |
only exit from install-tl on release version check if we are installing
from the network
git-svn-id: svn://tug.org/texlive/trunk@14814 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/install-tl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl index 758dec2345f..ab8af8a4dac 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -434,7 +434,8 @@ $texlive_release = $tlpdb->config_release; # Why only the first four places: some optional network distributions # might use # release/2009-foobar -if ($texlive_release !~ m/^$TeXLive::TLConfig::ReleaseYear/) { +if ($media eq "NET" && + $texlive_release !~ m/^$TeXLive::TLConfig::ReleaseYear/) { die "The release version of the installation source and\nthe installation media do not agree:\nsource: $texlive_release\nmedia: $TeXLive::TLConfig::ReleaseYear\nPlease report to tex-live\@tug.org"; } set_platforms_supported(); |