diff options
author | Karl Berry <karl@freefriends.org> | 2009-01-01 17:45:50 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-01-01 17:45:50 +0000 |
commit | 06b1964526f9f21bba3b50c33085a434ecbc64d3 (patch) | |
tree | 8a674657765462b4d90c10fcc758d1185b2abe3c /Master/tlpkg/bin/tlprm | |
parent | 1734821ab45d435176ee5c554e59bd8b51d2f01f (diff) |
norasi-c90 from cjk 4.8.2 (29dec08)
git-svn-id: svn://tug.org/texlive/trunk@11790 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/bin/tlprm')
-rwxr-xr-x | Master/tlpkg/bin/tlprm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Master/tlpkg/bin/tlprm b/Master/tlpkg/bin/tlprm index 280101511b2..05ecc02d8d3 100755 --- a/Master/tlpkg/bin/tlprm +++ b/Master/tlpkg/bin/tlprm @@ -76,19 +76,19 @@ sub main my $tsrc = "$Master/tlpkg/tlpsrc"; my @lines = `grep -l 'depend.* $f\$' $tsrc/collection-* $tsrc/scheme-*`; - print "first edit collections:\n", @lines; + print "first edit collections:\n", @lines if @lines; `printf "@lines" >>$commit_file`; my $check_script = "$Master/tlpkg/bin/tlpkg-ctan-check"; @lines = `egrep '( |^)$f( |\$)' $check_script`; if (@lines) { - print "and no future checks: $check_script\n"; + print "no future checks: $check_script\n"; `echo $check_script >>$commit_file`; } # e.g., insert a die. - print "and no resurrection: $Master/tlpkg/bin/ctan2tds\n"; - `echo $Master/tlpkg/bin/ctan2tds >>$commit_file`; + print "no resurrection: $Master/tlpkg/libexec/ctan2tds\n"; + `echo $Master/tlpkg/libexec/ctan2tds >>$commit_file`; print "then:\nsvn remove `cat $rm_file`\n"; print "svn commit -m'rm $f, REASON' `cat $commit_file`\n"; |