From d3c1cc9f1512260b5434d8f735662b4d9e32af53 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Thu, 9 Feb 2006 13:06:47 -0500 Subject: [PATCH] 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 --- SConscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"],