diff options
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index f98f59d53..457e1d764 100755 --- a/configure.py +++ b/configure.py @@ -504,7 +504,7 @@ def guess_processor(archinfo): return (base_proc,submodel) # No matches, so just use the base proc type - return (base_proc,base_proc) + return canon_processor(archinfo, base_proc) """ Read a whole file into memory as a string |