diff options
author | Brad Smith <brad@comstyle.com> | 2018-10-04 20:34:58 +0000 |
---|---|---|
committer | Brad Smith <brad@comstyle.com> | 2018-10-04 20:34:58 +0000 |
commit | ceddf2385d2705ef4cfd5d609fdff4a9db34002a (patch) | |
tree | e656975c61d114eddb487353ef5e5de2f76aa4ae /lldb/scripts/utilsOsType.py | |
parent | 933de17ac242f0b7bf4533a3ae57eb2e0912f2ba (diff) | |
download | bcm5719-llvm-ceddf2385d2705ef4cfd5d609fdff4a9db34002a.tar.gz bcm5719-llvm-ceddf2385d2705ef4cfd5d609fdff4a9db34002a.zip |
The Python 3 part of the script was missed when adding OpenBSD support.
llvm-svn: 343810
Diffstat (limited to 'lldb/scripts/utilsOsType.py')
-rw-r--r-- | lldb/scripts/utilsOsType.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/scripts/utilsOsType.py b/lldb/scripts/utilsOsType.py index 5595541e1a1..dfc5cec340d 100644 --- a/lldb/scripts/utilsOsType.py +++ b/lldb/scripts/utilsOsType.py @@ -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", |