diff options
Diffstat (limited to 'bin/tqt20fix')
-rwxr-xr-x | bin/tqt20fix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/tqt20fix b/bin/tqt20fix index a303717bf..371faef79 100755 --- a/bin/tqt20fix +++ b/bin/tqt20fix @@ -1,14 +1,14 @@ #!/usr/bin/perl -w # # in sh/bash/zsh: -# make 2>&1 | .../qt/bin/tqt20fix +# make 2>&1 | .../qt/bin/ttqt20fix # in csh/tcsh -# make |& .../qt/bin/tqt20fix +# make |& .../qt/bin/ttqt20fix # -# repeat as long as tqt20fix says to. if your make supports the -k +# repeat as long as ttqt20fix says to. if your make supports the -k # flag, that speeds up the process a bit. # -# tqt20fix tends to fix a bit over half of the remaining problems in +# ttqt20fix tends to fix a bit over half of the remaining problems in # each run. # # if you don't use gcc, you will need to change parseline. @@ -222,7 +222,7 @@ while( <STDIN> ) { if ( defined( $lastfile ) ) { open( O, "> $lastfile" ) || die "cannot write to $lastfile, stopped"; - print "tqt20fix: writing $lastfile (changes: $changes)\n"; + print "ttqt20fix: writing $lastfile (changes: $changes)\n"; print O @currentfile; close O; } @@ -248,12 +248,12 @@ while( <STDIN> ) { if ( defined( $changes) && $changes > 0 && defined( $lastfile ) ) { open( O, "> $lastfile" ) || die "cannot write to $lastfile, stopped"; - print "tqt20fix: writing $lastfile (changes: $changes)\n"; + print "ttqt20fix: writing $lastfile (changes: $changes)\n"; print O @currentfile; close O; } if ( defined( $totalchanges) && $totalchanges > 0 ) { - print "tqt20fix: total changes: $totalchanges\ntqt20fix: rerun recommended\n"; + print "ttqt20fix: total changes: $totalchanges\nttqt20fix: rerun recommended\n"; } |