From: Nathan Binkert Date: Wed, 20 Jun 2007 15:12:10 +0000 (-0700) Subject: Don't go over 80 chars per line X-Git-Tag: m5_2.0_beta4~326^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=438ec924d65f0ff36a88965b6db0b3d0c4c115b3;p=gem5.git Don't go over 80 chars per line --HG-- extra : convert_revision : ec73c3c8788757990a6fab8c600f3b353d0d4206 --- diff --git a/src/SConscript b/src/SConscript index 34c5453b7..7a3b25c92 100644 --- a/src/SConscript +++ b/src/SConscript @@ -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]