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