Index: mttroot/mtt/bin/trans/awk/rep_txt2make.awk ================================================================== --- mttroot/mtt/bin/trans/awk/rep_txt2make.awk +++ mttroot/mtt/bin/trans/awk/rep_txt2make.awk @@ -10,10 +10,13 @@ ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ +# Revision 1.2 1996/11/21 15:57:28 peterg +# Now runs mtt quietly. +# # Revision 1.1 1996/08/18 19:59:00 peter # Initial revision # ############################################################### @@ -23,15 +26,15 @@ system_name = a[1]; } { if (NF==2) { if( match("tex txt r m ps",$2)>0) { - printf("mtt -q %s %s %s\n ", system_name, $1, $2) + printf("mtt -q %s %s %s %s\n ", switches, system_name, $1, $2) } } } END { }