diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2016-03-30 16:21:27 +0100 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2016-03-30 16:21:27 +0100 |
commit | 41c358c411a0a1dd555c9da9b01c3ff39937b367 (patch) | |
tree | 938690b81afee30ea0c5a9dd9a089331479276ae | |
parent | 4532a65669a82b5f5d9b08a62368aceb6e70d223 (diff) | |
download | gem5-41c358c411a0a1dd555c9da9b01c3ff39937b367.tar.xz |
misc: Don't build region.py as a PySource
The style refactor change (style: Refactor the style checker as a
Python package) moved region.py from src/python/m5/util/ to
util/style/. The SConscript update accidentally got lost in that
commit. This commit removes region.py from src/python/SConscript.
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
--HG--
extra : amend_source : f69b75bf636dd4a4232af3e10c29f7eaa4d59dc8
-rw-r--r-- | src/python/SConscript | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/python/SConscript b/src/python/SConscript index 7e9380d85..503e9138d 100644 --- a/src/python/SConscript +++ b/src/python/SConscript @@ -59,7 +59,6 @@ PySource('m5.util', 'm5/util/grammar.py') PySource('m5.util', 'm5/util/jobfile.py') PySource('m5.util', 'm5/util/multidict.py') PySource('m5.util', 'm5/util/orderdict.py') -PySource('m5.util', 'm5/util/region.py') PySource('m5.util', 'm5/util/smartdict.py') PySource('m5.util', 'm5/util/sorteddict.py') PySource('m5.util', 'm5/util/terminal.py') |