From: Gabe Black Date: Thu, 9 Feb 2006 18:06:47 +0000 (-0500) Subject: A fix for SConscript so it will work with newer versions of scons X-Git-Tag: m5_2.0_beta1~87^2~115^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3c1cc9f1512260b5434d8f735662b4d9e32af53;p=gem5.git 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 --- 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"],