diff options
author | Norbert Preining <preining@logic.at> | 2020-06-07 06:14:47 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2020-06-07 06:14:47 +0000 |
commit | 445e17a0aec7f231df24948fff2eab7e41d1d0a4 (patch) | |
tree | cad6df39e53fc5af7cce782b60ab0753449c5033 /Master/tlpkg/bin/tl-makeself-from-tlnet | |
parent | 7f07d36034cb9e1d92462bc589e734a45922f14e (diff) |
makeself: runme: make sure we don't cosider "man" an architecture
git-svn-id: svn://tug.org/texlive/trunk@55461 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tl-makeself-from-tlnet')
-rwxr-xr-x | Master/tlpkg/bin/tl-makeself-from-tlnet | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/tlpkg/bin/tl-makeself-from-tlnet b/Master/tlpkg/bin/tl-makeself-from-tlnet index 50bdc4e6b9a..cb416dc59bf 100755 --- a/Master/tlpkg/bin/tl-makeself-from-tlnet +++ b/Master/tlpkg/bin/tl-makeself-from-tlnet @@ -182,6 +182,10 @@ if test -r "$ROOT/tlpkg/texlive.tlpdb" && test -d "$ROOT/tlpkg/tlpobj/"; then for a in "$ROOT"/bin/*; do test -d "$a" || continue # skip any cruft files b=`basename "$a"` # just the architecture name + # skip 'man' directories if they are still present + if test "$b" = "man"; then + continue + fi echo "$0: updating $a ..." # add the tlpobjs for this platform to the list. |