diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-02-09 13:06:47 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-02-09 13:06:47 -0500 |
commit | d3c1cc9f1512260b5434d8f735662b4d9e32af53 (patch) | |
tree | c2339a2858a8683bc5e245a7cc7e7aea4811d2df /SConscript | |
parent | f444a7e799a1a4ccfe2650217a9d5b6f5e3e65a0 (diff) | |
download | gem5-d3c1cc9f1512260b5434d8f735662b4d9e32af53.tar.xz |
A fix for SConscript so it will work with newer versions of scons
SConscript:
Changed the ISAPath function to take 5 arguments to work with scons 0.97.
--HG--
extra : convert_revision : 34fbe131aec9349631b5026d839563380623f3fd
Diffstat (limited to 'SConscript')
-rw-r--r-- | SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConscript b/SConscript index 56a4e3610..589b2a17c 100644 --- a/SConscript +++ b/SConscript @@ -400,7 +400,7 @@ def ISAScan(): "SRCDIR", '^[ \t]*##[ \t]*include[ \t]*"([^>"]+)"') -def ISAPath(env, dir, a=None): +def ISAPath(env, dir, target=None, source=None, a=None): return (Dir(env['SRCDIR']), Dir('.')) iscan = Scanner(function = ISAScan().scan, skeys = [".isa", ".ISA"], |