diff options
author | Karl Berry <karl@freefriends.org> | 2008-10-15 23:57:46 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2008-10-15 23:57:46 +0000 |
commit | ab7bb33092fca8b83fda06e5aa6f33d35fed8c0c (patch) | |
tree | d259a9df9b61a859837d6e79752a4b531121df3b /Master | |
parent | 8b997c19a2d288b2e5cc5b7c4e71815d420f2a50 (diff) |
--recreate, wording, latexmk special case
git-svn-id: svn://tug.org/texlive/trunk@10986 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/tlpkg/bin/check-wrapper-consistency | 1 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-containers | 2 | ||||
-rwxr-xr-x | Master/tlpkg/bin/tl-update-tlnet | 6 |
3 files changed, 6 insertions, 3 deletions
diff --git a/Master/tlpkg/bin/check-wrapper-consistency b/Master/tlpkg/bin/check-wrapper-consistency index 82f152e06c9..5fbe1ac6018 100755 --- a/Master/tlpkg/bin/check-wrapper-consistency +++ b/Master/tlpkg/bin/check-wrapper-consistency @@ -102,6 +102,7 @@ sub check_w32 next if $target =~ /context/; # does things its own way next if $target =~ /dviasm|ebong/; # no .bat for python next if $target =~ /epspdf/; # checks for ruby too + next if $target =~ /latexmk/; # has its own .bat next if $target =~ /ps4pdf/; # has its own .bat next if $target =~ /simpdftex/; # shell script next if $target =~ /tex4ht/; # tex4ht has its own .bat's diff --git a/Master/tlpkg/bin/tl-update-containers b/Master/tlpkg/bin/tl-update-containers index 305e5c3271e..1d66aa5d1be 100755 --- a/Master/tlpkg/bin/tl-update-containers +++ b/Master/tlpkg/bin/tl-update-containers @@ -308,7 +308,7 @@ sub main } if ($opt_recreate) { - info("$0: all packages recreated!\n"); + info("$0: all packages recreated.\n"); } else { if (@todopacks) { # we updated something diff --git a/Master/tlpkg/bin/tl-update-tlnet b/Master/tlpkg/bin/tl-update-tlnet index 1b636902944..ad4d0dc1f78 100755 --- a/Master/tlpkg/bin/tl-update-tlnet +++ b/Master/tlpkg/bin/tl-update-tlnet @@ -3,7 +3,7 @@ # This file is licensed under the GNU General Public License version 2 # or any later version. # -# Update a TeX Live tlnet distribution, with testing. +# Update a TeX Live tlnet area, with testing. vc_id='$Id$' unset CDPATH @@ -11,6 +11,7 @@ unset LS_COLORS chicken=false critical= +recreate= yyyy=2008 while test $# -gt 0; do @@ -18,6 +19,7 @@ while test $# -gt 0; do --critical) critical=--all;; --dry-run|-n) chicken=true;; --master) shift; Master=$1;; + --recreate) recreate=--recreate;; --testlocation) shift; tlwebtrybase=$1;; --help) echo "xxtodo. Sorry."; exit 0;; --version) echo "$vc_id"; exit 0;; @@ -57,7 +59,7 @@ echo "$0: Updating $tlwebtry in cow-shell..." cd $tlwebtry cow-shell <<END_COW echo "$0: Running tl-update-containers..." -$Master/tlpkg/bin/tl-update-containers -location $tlwebtry $critical +$Master/tlpkg/bin/tl-update-containers -location $tlwebtry $critical $recreate # It is scary, but I guess we should update the installer package every # day, partly for the sake of doc.html and partly so it actually gets |