NetBSD detection in envconfig.MachineInfo

pull/5756/head
nia 6 years ago committed by Dylan Baker
parent 246b49fe75
commit e085aa089f
  1. 6
      mesonbuild/envconfig.py

@ -233,6 +233,12 @@ class MachineInfo:
"""
return self.system == 'haiku'
def is_netbsd(self) -> bool:
"""
Machine is NetBSD?
"""
return self.system == 'netbsd'
def is_openbsd(self) -> bool:
"""
Machine is OpenBSD?

Loading…
Cancel
Save