summaryrefslogtreecommitdiff
path: root/Master/tlpkg/bin
diff options
context:
space:
mode:
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-xMaster/tlpkg/bin/tl-check-wrapper-consistency14
-rwxr-xr-xMaster/tlpkg/bin/tl-update-linked-scripts2
-rwxr-xr-xMaster/tlpkg/bin/tl-update-news2
3 files changed, 9 insertions, 9 deletions
diff --git a/Master/tlpkg/bin/tl-check-wrapper-consistency b/Master/tlpkg/bin/tl-check-wrapper-consistency
index e5d12532323..947cb9374bb 100755
--- a/Master/tlpkg/bin/tl-check-wrapper-consistency
+++ b/Master/tlpkg/bin/tl-check-wrapper-consistency
@@ -2,8 +2,8 @@
# $Id$
# Public domain. Originally written 2008.
#
-# Check that the same set of files are wrappers on w32 and symlinks on
-# all others.
+# Check that the same set of files are wrappers on windows
+# and symlinks on all others.
BEGIN {
$^W = 1;
@@ -30,11 +30,12 @@ sub main {
my $bindir = "$Master/bin";
chdir ($bindir) || die "chdir($bindir) failed: $!";
+ # get entries from one Unix platform, assuming they're the same everywhere.
my %w = &unx_wrapper_entries ("x86_64-linux");
- chomp (my $srcdir = `cd $Master/../Build/source/texk/texlive && pwd`);
- $cww = "$srcdir/w32_wrapper/runscript.exe";
- $err += &check_w32 ("windows", $cww, %w);
+ my $windows_dir = "windows";
+ $cww = "windows/runscript.exe";
+ $err += &check_w32 ($windows_dir, $cww, %w);
return $err;
}
@@ -79,6 +80,9 @@ sub unx_wrapper_entries {
# cases) exists in W32DIR as a .exe, and furthermore is a copy of the
# canonical w32 wrapper exe specified in W32CANONICAL.
#
+# (2023: our windows binaries aren't 32-bit any more, but don't bother
+# renaming.)
+#
sub check_w32 {
my ($w32dir, $w32canonical, %uw) = @_;
my $diff = 0;
diff --git a/Master/tlpkg/bin/tl-update-linked-scripts b/Master/tlpkg/bin/tl-update-linked-scripts
index dfdc3370cf4..d2c6c814008 100755
--- a/Master/tlpkg/bin/tl-update-linked-scripts
+++ b/Master/tlpkg/bin/tl-update-linked-scripts
@@ -10,8 +10,6 @@ Master=`cd $mydir/../.. && pwd`
compare_and_copy () {
for file in "$@"; do
#echo "comparing $Src/$file to $Dest..."
- # context is its own thing, don't try to handle here.
- echo "$file" | grep '/context.sh$' >/dev/null && continue
cmp -s $Src/$file $Dest/$file && continue
diff --git a/Master/tlpkg/bin/tl-update-news b/Master/tlpkg/bin/tl-update-news
index 4e58368125f..cc5e2bbb3e7 100755
--- a/Master/tlpkg/bin/tl-update-news
+++ b/Master/tlpkg/bin/tl-update-news
@@ -11,8 +11,6 @@
#
# pdftex, luatex, mpost, cweb and related, ptex and related;
# all these are updated separately, not in this script.
-# For pdftex and mpost, see the doc/manual subdirectories
-# in their respective repositories.
#
# (By the way, we don't ordinarily use sh -e, but since all we're doing
# here is a bunch of copies, it seemed the simplest.)