svn commit: trunk/busybox/scripts
aldot at busybox.net
aldot at busybox.net
Wed May 21 14:15:51 PDT 2008
Author: aldot
Date: 2008-05-21 14:15:37 -0700 (Wed, 21 May 2008)
New Revision: 22042
Log:
- make Christian happy
Modified:
trunk/busybox/scripts/bloat-o-meter
Changeset:
Modified: trunk/busybox/scripts/bloat-o-meter
===================================================================
--- trunk/busybox/scripts/bloat-o-meter 2008-05-21 12:09:28 UTC (rev 22041)
+++ trunk/busybox/scripts/bloat-o-meter 2008-05-21 21:15:37 UTC (rev 22042)
@@ -21,9 +21,8 @@
def getsizes(file):
sym = {}
for l in os.popen("nm --size-sort " + file).readlines():
- l = l.strip()
# Skip empty lines
- if not len(l): continue
+ if not len(l.strip()): continue
# Skip archive members
if len(l.split()) == 1 and l.endswith(':'):
continue
More information about the busybox-cvs
mailing list