summaryrefslogtreecommitdiff
path: root/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-04-30 03:01:32 +0000
committerNorbert Preining <norbert@preining.info>2024-04-30 03:01:32 +0000
commit3bb814fe836cd59db56f2f5d07f69cb531ed25e0 (patch)
tree53c08bd7d2d4d9422f8bc32aa66c67f24fc82ca2 /systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
parent9ffa8712668c5055c54742499d06caeb5cc9c87b (diff)
CTAN sync 202404300301
Diffstat (limited to 'systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm')
-rw-r--r--systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm14
1 files changed, 8 insertions, 6 deletions
diff --git a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
index 896bc80a5e..0b73214017 100644
--- a/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
+++ b/systems/texlive/tlnet/tlpkg/TeXLive/TLPDB.pm
@@ -1,4 +1,4 @@
-# $Id: TLPDB.pm 71102 2024-04-27 21:50:01Z karl $
+# $Id: TLPDB.pm 71122 2024-04-29 17:34:15Z karl $
# TeXLive::TLPDB.pm - tlpdb plain text database files.
# Copyright 2007-2024 Norbert Preining
# This file is licensed under the GNU General Public License version 2
@@ -7,7 +7,7 @@
use strict; use warnings;
package TeXLive::TLPDB;
-my $svnrev = '$Revision: 71102 $';
+my $svnrev = '$Revision: 71122 $';
my $_modulerevision = ($svnrev =~ m/: ([0-9]+) /) ? $1 : "unknown";
sub module_revision { return $_modulerevision; }
@@ -367,12 +367,14 @@ $0: TLPDB::from_file could not get texlive.tlpdb from: $path
Maybe the repository setting should be changed.
More info: https://tug.org/texlive/acquire.html
END_DOWNLOAD_FAILURE_MSG
- if ($^O eq 'cygwin') {
+
+ # If they have the Cygwin wget.exe, some other problem.
+ if ($^O eq 'cygwin' && -x "/usr/bin/wget.exe") {
$diemsg .= <<END_CYGWIN_WGET_MSG;
-It seems you are using Cygwin, and this problem could arise if you haven't
-installed Cygwin's wget. See the TeX Live Guide information on Cygwin
-for required and recommended packages:
+It seems you are using Cygwin and haven't installed Cygwin's wget.
+See the TeX Live Guide information on Cygwin for required and
+recommended packages:
https://tug.org/texlive/doc/texlive-en/texlive-en.html#cygwin
END_CYGWIN_WGET_MSG
}