================
Comment at: scripts/utilsOsType.py:74-81
@@ -73,10 +73,9 @@
        
        strOS = sys.platform
        if strOS == "win32":
-               eOSType = EnumOsType.Windows;
+               eOSType = EnumOsType.Windows
        elif (strOS == "linux") or (strOS == "linux2"):
-               eOSType = EnumOsType.Linux;
+               eOSType = EnumOsType.Linux
        elif strOS == "darwin":
-               eOSType == EnumOsType.Darwin;
-               
-       return eOSType;
+               eOSType = EnumOsType.Darwin
+       return eOSType
----------------
This is also broken for FreeBSD. I can take care of that and this Darwin fix in 
a moment.

http://reviews.llvm.org/D6290



_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to