tstupid solaris - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 5348a6013ebe8f72aff8ca5e9cad013a980c6f4c
 (DIR) parent b2f08f618b3d5fcd1a6f816fa73bd7d77d888180
 (HTM) Author: rsc <devnull@localhost>
       Date:   Thu, 15 Dec 2005 03:31:07 +0000
       
       stupid solaris
       
       Diffstat:
         M dist/isum.awk                       |      13 +++++++------
       
       1 file changed, 7 insertions(+), 6 deletions(-)
       ---
 (DIR) diff --git a/dist/isum.awk b/dist/isum.awk
       t@@ -4,10 +4,11 @@
        BEGIN {
        #        print verbose 
                cd = ""
       -        out = "/dev/stdout";
       +        out = "/dev/stdout"
       +        debug = 0
        }
        
       -debug { print "# " $0 }
       +debug!=0 { print "# " $0 }
        
        /^$/ { next }
        
       t@@ -24,7 +25,7 @@ debug { print "# " $0 }
                next
        }
        
       -/^        / && printtabs {
       +/^        / && printtabs!=0 {
                print >out
                fflush(out)
                next
       t@@ -58,7 +59,7 @@ debug { print "# " $0 }
                cmd = cmd $0 "\n"
        }
        
       -errors {
       +errors != 0 {
                if(debug) print "% errors"
                printf "%s", cmd >out
                fflush(out)
       t@@ -70,12 +71,12 @@ errors {
                next
        }
        
       -/^(up to date|nothing to see|assuming it will be|loop not entered|conflicts:)/ {
       +/^(conflicts:)/ {
                if(debug) print "% skip1"
                next
        }
        
       -/is up to date/ {
       +/(up to date|nothing to see|assuming it will be|loop not entered)/ {
                next
        }