diff options
Diffstat (limited to 'Master/tlpkg/bin')
-rwxr-xr-x | Master/tlpkg/bin/c2l | 10 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-news | 3 |
2 files changed, 8 insertions, 5 deletions
diff --git a/Master/tlpkg/bin/c2l b/Master/tlpkg/bin/c2l index 5e1136d58f1..11ce4c4b4f8 100755 --- a/Master/tlpkg/bin/c2l +++ b/Master/tlpkg/bin/c2l @@ -67,8 +67,11 @@ sub main { } elsif ($arg eq "musl") { $arg = "x86_64-linuxmusl"; - } elsif ($arg eq "norbert" || $arg eq "nor") { - for my $p (qw(amd64-freebsd + } elsif ($arg eq "norbert" || $arg eq "nor" || $arg eq "gh") { + # see Build/source/.github/ for workflows and scripts. + for my $p (qw(aarch64-linux + armhf-linux + amd64-freebsd i386-freebsd i386-linux i386-solaris x86_64-linux x86_64-linuxmusl x86_64-solaris)) { system ("$0 $p") && die "norbert/$p failed"; @@ -77,8 +80,7 @@ sub main { exit 0; } elsif ($arg eq "cg" || $arg eq "moj" || $arg eq "mojca") { - for my $p (qw(aarch64-linux #armhf-linux - x86_64-darwinlegacy + for my $p (qw(x86_64-darwinlegacy )) { system ("$0 $p") && die "cg/$p failed"; } diff --git a/Master/tlpkg/bin/tl-update-news b/Master/tlpkg/bin/tl-update-news index acfc884b062..9cccb89a537 100755 --- a/Master/tlpkg/bin/tl-update-news +++ b/Master/tlpkg/bin/tl-update-news @@ -23,7 +23,7 @@ Master=$tlroot/Master # xist_doc=$Master/texmf-dist/doc # -cp="cp -pf" +cp="cp -pfv" cd $Build/source/texk/ || exit 1 # @@ -40,6 +40,7 @@ $cp NEWS $xist_doc/web2c/ $cp alephdir/ChangeLog $xist_doc/aleph/base/ $cp etexdir/ChangeLog $xist_doc/etex/base/ $cp luatexdir/NEWS $xist_doc/luatex/base/ +$cp mplibdir/NEWS $xist_doc/metapost/base/ $cp pdftexdir/NEWS $xist_doc/pdftex/ $cp pdftexdir/README $xist_doc/pdftex/ $cp xetexdir/NEWS $xist_doc/xetex/base/ |