diff options
-rwxr-xr-x | Master/tlpkg/bin/tl-makeself-from-tlnet | 8 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-try-makeself | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tl-makeself-from-tlnet b/Master/tlpkg/bin/tl-makeself-from-tlnet index 1b0b71a3ba9..723b41efa4c 100755 --- a/Master/tlpkg/bin/tl-makeself-from-tlnet +++ b/Master/tlpkg/bin/tl-makeself-from-tlnet @@ -249,8 +249,12 @@ chmod ugo+x runme.sh # make the self-extracting archive back in the directory from which # we were invoked. cd "$CWD" -makeself -q \ - --header $mydir/../libexec/makeself-header.sh \ + +# we must use the non-distro (Alma Linux 8) version of makeself, because +# that happened to have a bug causing unnecessary hard links to end up +# in the archive, which bsdtar (aka macOS) fails on. +# https://tug.org/pipermail/tlu/2023-November/000639.html +/usr/local/share/makeself/makeself.sh -q --keep-umask \ $TMP \ update-tlmgr-r$infrarev.sh \ "TeX Live Manager Updater" \ diff --git a/Master/tlpkg/bin/tl-try-makeself b/Master/tlpkg/bin/tl-try-makeself index 386873ae687..c7799589d05 100755 --- a/Master/tlpkg/bin/tl-try-makeself +++ b/Master/tlpkg/bin/tl-try-makeself @@ -18,7 +18,7 @@ rm -rf "$testdir" mkdir "$testdir" rsync -a "$lc"/{archive,tlpkg} "$testdir" -cd "$testdir" # because tl-makeself outputs to the current directory +cd "$testdir" # because tl-makeself-* outputs to the current directory rm -f update*sh # remove previous attempts tl-makeself-from-tlnet "$testdir" ls -l "$testdir" @@ -30,4 +30,4 @@ cd "$tl" # Now try running the updater in the installed tree. PATH=$tl/bin/x86_64-linux:/usr/bin -"$testdir"/update-tlmgr-r*.sh #-- --debug +"$testdir"/update-tlmgr-r*.sh --noprogress #-- --debug |