diff options
author | Karl Berry <karl@freefriends.org> | 2023-02-28 22:55:44 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2023-02-28 22:55:44 +0000 |
commit | 96043c15d0cb1967270403c6cc346a5fd0d6bf2a (patch) | |
tree | 1eeaf6b2b4c8133dfbd1f2dd208f674490149833 /Master/tlpkg/bin/tl-update-bindir | |
parent | 0d63659477aaa9e8cbdaf2f5288ac5117d37e03a (diff) |
mingw tweaks, sync, doc
git-svn-id: svn://tug.org/texlive/trunk@66266 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tl-update-bindir')
-rwxr-xr-x | Master/tlpkg/bin/tl-update-bindir | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/tl-update-bindir b/Master/tlpkg/bin/tl-update-bindir index 710531ec115..fe146711a70 100755 --- a/Master/tlpkg/bin/tl-update-bindir +++ b/Master/tlpkg/bin/tl-update-bindir @@ -11,9 +11,9 @@ tmpdir=${TMPDIR-/tmp}/tlupbin.$$ trap "rm -rf $tmpdir" 0 1 2 15 test -d $tmpdir || mkdir -p $tmpdir -usage="$0 [OPTION]... TL-PLATFORM... +usage="$0 [OPTION]... TLPLATFORM... -Update the TeX Live executables for each TL-PLATFORM (which must be a TL +Update the TeX Live executables for each TLPLATFORM (which must be a TL platform name, e.g., i386-linux) from a build directory. The new binaries are taken from the location specified by --bin-loc, @@ -33,7 +33,7 @@ requires when a symlink is replaced by a file or vice versa. Options: --bin-loc DIR-OR-TAR use binaries from DIR-OR-TAR - --master DIR install binaries to DIR/bin/TL-PLATFORM + --master DIR install binaries to DIR/bin/TLPLATFORM [default is the bin dir relative to this script] --help display this help and exit @@ -275,11 +275,12 @@ for tlplat in $tlplats; do ourdel=$tmpdir/2del ouradd=$tmpdir/2add - # looking for deletions, but don't delete (x)asy, biber, xindy. + # looking for deletions, but don't delete (x)asy, biber, xindy, context. comm -23 $tmpdir/now $tmpdir/new \ | egrep -v '^(x?asy(\.exe)?|freeglut\.dll)$' \ | egrep -v '^biber(-ms)?(\.exe)?$' \ | egrep -v '^dvisvgm$' \ + | egrep -v '^(luametatex|context(.lua)?|mtxrun$' \ | egrep -v 'xindy' \ >$ourdel # intentionally anything matching xindy comm -13 $tmpdir/now $tmpdir/new >$ouradd # looking for additions @@ -366,5 +367,5 @@ for tlplat in $tlplats; do $msg "final svn status..." svn status | sort - rm -rf $tmpdir + echo rm -rf $tmpdir done |