diff options
author | Karl Berry <karl@freefriends.org> | 2017-04-27 16:46:42 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-04-27 16:46:42 +0000 |
commit | c5dc164255a59b27826c5f2a445c009132a13b0e (patch) | |
tree | 0dd2e5e7aec8335b7c95698f9a74c5d9ab20b677 | |
parent | a2a03aa6230e0fdc8d5a7922f2c0c23c05915fe1 (diff) |
wording, links
git-svn-id: svn://tug.org/texlive/trunk@44080 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/updmap.pl | 4 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-images | 6 | ||||
-rw-r--r-- | Master/tlpkg/doc/releng.txt | 1 |
3 files changed, 6 insertions, 5 deletions
diff --git a/Master/texmf-dist/scripts/texlive/updmap.pl b/Master/texmf-dist/scripts/texlive/updmap.pl index 23774e4ea67..289ff44f30d 100755 --- a/Master/texmf-dist/scripts/texlive/updmap.pl +++ b/Master/texmf-dist/scripts/texlive/updmap.pl @@ -1479,8 +1479,8 @@ sub enable_disable_maps { # allow for all lowercase map types (map/mixedmap/kanjimap) $type =~ s/map$/Map/; $type = ucfirst($type); - # don't allow for map names containing / - die "$prg: map files cannot be relative/absolute paths: $map\n" if ($map =~ m{/}); + # don't allow map names containing / + die "$prg: map names cannot contain /: $map\n" if ($map =~ m{/}); enable_map($tc, $type, $map); } else { # this is --disable MapName diff --git a/Master/tlpkg/bin/tl-update-images b/Master/tlpkg/bin/tl-update-images index b95f5c62b02..947615aee75 100755 --- a/Master/tlpkg/bin/tl-update-images +++ b/Master/tlpkg/bin/tl-update-images @@ -107,7 +107,7 @@ MAKEINST () # do this here so that they can be kept in the tree, # and thus installed normally over the net. # keep in sync with info on http://tug.org/texlive/doc.html. - prune="armel-linux armhf-linux powerpc-linux" + prune="armel-linux powerpc-linux" echo "-- pruning platforms: $prune..." mkdir $imgdir/tlpkg/bin cp $mydir/tl-prune-platforms $imgdir/tlpkg/bin @@ -155,8 +155,8 @@ MAKEINST () $master/tlpkg/bin/tl-sign-file $prefix.iso.sha512 || exit 1 # symlinks with short name (potentially used in /etc/fstab). - ln -s `basename $iso` $prefix.iso # with year - ln -s `basename $iso` $target/$NAME.iso # no year + rm $prefix.iso; ln -s `basename $iso` $prefix.iso # with year + rm $target/$NAME.iso; ln -s `basename $iso` $target/$NAME.iso # no year # at the end, all the files should be non-empty. all_ok=true diff --git a/Master/tlpkg/doc/releng.txt b/Master/tlpkg/doc/releng.txt index f8fd97666eb..74096cc7a42 100644 --- a/Master/tlpkg/doc/releng.txt +++ b/Master/tlpkg/doc/releng.txt @@ -128,6 +128,7 @@ M. As work proceeds, update the doc: MetaPost (in texmf-dist), other engine (in source) NEWS. Ensure all engine manuals updated in texmf-dist. Update texlive-en.tex (+ .pdf, .html), tell tldoc to translate. + Don't neglect to update "Builders of the binaries". Update tlbuild.texi. Consider updates of core man pages in Build/source/texk/web2c/man. Remake updmap,fmtutil man pages with help2man: |