X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=mpeix%2Fnm;h=64e58be4d827b13d78c0039b9c6d9ae68362d279;hb=8861ecc69a87dc6907b3e9c79689edb5df16413e;hp=e2a5d27c25ea68ff68057f615607010661d0814c;hpb=6b7580e543c9f51ca0360c11c0b0e39c24afd6ef;p=p5sagit%2Fp5-mst-13.2.git diff --git a/mpeix/nm b/mpeix/nm index e2a5d27..64e58be 100755 --- a/mpeix/nm +++ b/mpeix/nm @@ -22,12 +22,12 @@ esac # I wanted to pipe this into awk, but it fell victim to a known pipe/streams # bug on my multiprocessor machine. -callci xeq linkedit.pub.sys \"$LIST\" >/tmp/nm.$$ +callci xeq linkedit.pub.sys \"$LIST\" >nm.$$ /bin/awk '\ / data univ / { printf "%-20s|%10s|%-6s|%-7s|%s\n",$1,$5,"extern","data","?"} \ - / entry univ / { printf "%-20s|%10s|%-6s|%-7s|%s\n",$1,$7,"extern","entry","?"}' /tmp/nm.$$ + / entry univ / { printf "%-20s|%10s|%-6s|%-7s|%s\n",$1,$7,"extern","entry","?"}' nm.$$ -rm -f /tmp/nm.$$ +rm -f nm.$$ exit 0