Changed os subclasses CNL to change attribute to MODULES
This commit is contained in:
		@@ -11,9 +11,3 @@ def __init__(self):
 | 
			
		||||
        name = 'CNL'
 | 
			
		||||
        version = '10'
 | 
			
		||||
        super(Cnl, self).__init__(name, version, "MODULES")
 | 
			
		||||
 | 
			
		||||
    def compiler_strategy(self):
 | 
			
		||||
        return self.compiler_strategy
 | 
			
		||||
 | 
			
		||||
    def find_compilers(self):
 | 
			
		||||
        pass
 | 
			
		||||
 
 | 
			
		||||
@@ -12,13 +12,4 @@ def __init__(self):
 | 
			
		||||
        name = py_platform.dist()[0]
 | 
			
		||||
        version = py_platform.dist()[1] 
 | 
			
		||||
 | 
			
		||||
        super(LinuxDistro, self).__init__(name, version, "PATH")
 | 
			
		||||
    
 | 
			
		||||
    def compiler_strategy(self):
 | 
			
		||||
        return self.compiler_strategy
 | 
			
		||||
 | 
			
		||||
    def find_compilers(self):
 | 
			
		||||
        pass
 | 
			
		||||
 | 
			
		||||
    
 | 
			
		||||
 | 
			
		||||
        super(LinuxDistro, self).__init__(name, version)
 | 
			
		||||
 
 | 
			
		||||
@@ -26,15 +26,4 @@ def __init__(self):
 | 
			
		||||
        except KeyError:
 | 
			
		||||
            name = "mac_os"
 | 
			
		||||
 | 
			
		||||
        super(MacOsx, self).__init__(name, mac_ver, "PATH")
 | 
			
		||||
 | 
			
		||||
    def compiler_strategy(self):
 | 
			
		||||
        return self.compiler_strategy
 | 
			
		||||
 | 
			
		||||
    def find_compilers(self):
 | 
			
		||||
        pass
 | 
			
		||||
        
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        super(MacOsx, self).__init__(name, mac_ver)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user