The Python 3 part of the script was missed when adding OpenBSD support.

llvm-svn: 343810
This commit is contained in:
Brad Smith 2018-10-04 20:34:58 +00:00
parent 933de17ac2
commit ceddf2385d

View File

@ -35,8 +35,9 @@ if sys.version_info.major >= 3:
FreeBSD = 2
Linux = 3
NetBSD = 4
Windows = 5
kFreeBSD = 6
OpenBSD = 5
Windows = 6
kFreeBSD = 7
else:
class EnumOsType(object):
values = ["Unknown",