From 3ce0e0e670245e16bf477cb31d48b770844cf1bb Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Wed, 2 May 2018 08:24:30 -0600 Subject: Module used an undefined class name ArchDefinition is defined, then ArchitectureDefinition is used. It is not clear this is actually used (the problem was flagged by Sphinx, which was walking through every file), but let's not leave it broken. Signed-off-by: Mats Wichmann --- src/engine/SCons/Tool/MSCommon/arch.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/engine/SCons/Tool/MSCommon/arch.py b/src/engine/SCons/Tool/MSCommon/arch.py index 9bcc221..ad17959 100644 --- a/src/engine/SCons/Tool/MSCommon/arch.py +++ b/src/engine/SCons/Tool/MSCommon/arch.py @@ -37,22 +37,22 @@ class ArchDefinition(object): self.synonyms = synonyms SupportedArchitectureList = [ - ArchitectureDefinition( + ArchDefinition( 'x86', ['i386', 'i486', 'i586', 'i686'], ), - ArchitectureDefinition( + ArchDefinition( 'x86_64', ['AMD64', 'amd64', 'em64t', 'EM64T', 'x86_64'], ), - ArchitectureDefinition( + ArchDefinition( 'ia64', ['IA64'], ), - ArchitectureDefinition( + ArchDefinition( 'arm', ['ARM'], ), -- cgit v0.12