make variables static

This commit is contained in:
Denis Vlasenko
2007-09-27 10:08:02 +00:00
parent a619b85ef5
commit c9dc2ac578
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
# Common variables are elusive, they don't show up in size output!
# This script will show all commons in *.o, sorted by size
find -name '*.o' \
find ! -path './scripts/*' -a ! -name built-in.o -a -name '*.o' \
| while read name; do
b=`basename "$name"`
nm "$name" | sed "s/^/$b: /"