summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2018-10-04 20:34:58 +0000
committerBrad Smith <brad@comstyle.com>2018-10-04 20:34:58 +0000
commita7fa70cb3e47668da003d5f1e5e9e64ceb4d5404 (patch)
treee06fa63b0345f6564a0720fab71b8c698e3df859
parentd956140207ceaa1ee7818962573e5fd2b8b075db (diff)
The Python 3 part of the script was missed when adding OpenBSD support.
-rw-r--r--lldb/scripts/utilsOsType.py5
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",