diff options
author | Karl Berry <karl@freefriends.org> | 2023-02-27 18:45:24 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-02-27 18:45:24 +0000 |
commit | 03455e0c2cf3f72d34026071f889510ed47ff98c (patch) | |
tree | b136bfafb0785e02534006dcdf2ac2147431c8dd /Master/tlpkg/bin | |
parent | 715a7beb52e172f6cb2084f6672935a858b3f4f1 (diff) |
linked_scripts updates for context and windows; other syncs,doc
git-svn-id: svn://tug.org/texlive/trunk@66220 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/tl-check-wrapper-consistency | 14 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-linked-scripts | 2 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-news | 2 |
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.) |