krytarowski updated this revision to Diff 34265.
krytarowski added a comment.

abc order


Repository:
  rL LLVM

http://reviews.llvm.org/D12615

Files:
  scripts/utilsOsType.py

Index: scripts/utilsOsType.py
===================================================================
--- scripts/utilsOsType.py
+++ scripts/utilsOsType.py
@@ -31,6 +31,7 @@
                 "Darwin",
                 "FreeBSD",
                 "Linux", 
+                "NetBSD",
                 "Windows" ]
     class __metaclass__( type ):
 #++---------------------------------------------------------------------------
@@ -71,6 +72,8 @@
         eOSType = EnumOsType.FreeBSD
     elif (strOS.startswith("linux")):
         eOSType = EnumOsType.Linux
+    elif (strOS.startswith("netbsd")):
+        eOSType = EnumOsType.NetBSD
     elif strOS == "win32":
         eOSType = EnumOsType.Windows
 


Index: scripts/utilsOsType.py
===================================================================
--- scripts/utilsOsType.py
+++ scripts/utilsOsType.py
@@ -31,6 +31,7 @@
                 "Darwin",
                 "FreeBSD",
                 "Linux", 
+                "NetBSD",
                 "Windows" ]
     class __metaclass__( type ):
 #++---------------------------------------------------------------------------
@@ -71,6 +72,8 @@
         eOSType = EnumOsType.FreeBSD
     elif (strOS.startswith("linux")):
         eOSType = EnumOsType.Linux
+    elif (strOS.startswith("netbsd")):
+        eOSType = EnumOsType.NetBSD
     elif strOS == "win32":
         eOSType = EnumOsType.Windows
 
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to