Don't go over 80 chars per line

--HG--
extra : convert_revision : ec73c3c8788757990a6fab8c600f3b353d0d4206
This commit is contained in:
Nathan Binkert 2007-06-20 08:12:10 -07:00
parent d2ccf5e509
commit 438ec924d6

View file

@ -277,9 +277,10 @@ def makeEnv(label, objsfx, strip = False, **kwargs):
if strip:
stripped_bin = bin + '.stripped'
if sys.platform == 'sunos5':
newEnv.Command(stripped_bin, bin, 'cp $SOURCE $TARGET; strip $TARGET')
cmd = 'cp $SOURCE $TARGET; strip $TARGET'
else:
newEnv.Command(stripped_bin, bin, 'strip $SOURCE -o $TARGET')
cmd = 'strip $SOURCE -o $TARGET'
newEnv.Command(stripped_bin, bin, cmd)
bin = stripped_bin
targets = newEnv.Concat(exe, [bin, 'm5py.zip'])
newEnv.M5Binary = targets[0]