diff options
Diffstat (limited to 'Master/tlpkg/libexec/mptopdf-extract')
-rwxr-xr-x | Master/tlpkg/libexec/mptopdf-extract | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Master/tlpkg/libexec/mptopdf-extract b/Master/tlpkg/libexec/mptopdf-extract index 66dbd8c69b0..ea27181b167 100755 --- a/Master/tlpkg/libexec/mptopdf-extract +++ b/Master/tlpkg/libexec/mptopdf-extract @@ -7,18 +7,14 @@ tlbindir=`cd \`dirname $0\` && cd ../bin && pwd` PATH=$tlbindir:$PATH # tlpfiles -# Get files of our mptopdf package, ignoring top-level directory. -# And ignoring the man page until it is present in ConTeXt. +# Get files of our mptopdf package, ignoring top-level directory +# and ignoring the man pages in TL locations. files=`tlpfiles mptopdf | sed 's,[^/]*/,,' | grep -v doc/man` if test -z "$files"; then echo "$0: failed to get files for mptopdf." >&2 exit 1 fi -# Add man page in cont-tmf location: -files="$files -doc/context/scripts/mkii/mptopdf.man" - # We will extract them from the current context release. ctan=/home/ftp/mirror/rsync.tex.ac.uk/CTAN #context_zip=$ctan/macros/context/current/cont-tmf.zip |