aedi: remove needless check for os version in 7zip target

This commit is contained in:
alexey.lysiuk 2023-11-04 13:00:54 +02:00
parent 1f0261a993
commit 66a3f64e9f

View file

@ -184,10 +184,6 @@ class SeverZipTarget(base.MakeTarget):
def detect(self, state: BuildState) -> bool: def detect(self, state: BuildState) -> bool:
return state.has_source_file('CPP/7zip/cmpl_mac_arm64.mak') return state.has_source_file('CPP/7zip/cmpl_mac_arm64.mak')
def configure(self, state: BuildState):
state.validate_minimum_version('10.13')
super().configure(state)
def build(self, state: BuildState): def build(self, state: BuildState):
environment = state.environment environment = state.environment
mak_suffix = self._arch_suffix(state) mak_suffix = self._arch_suffix(state)