summaryrefslogtreecommitdiff
path: root/devel/llvm37/files/lldb-patch-svn-247116
diff options
context:
space:
mode:
Diffstat (limited to 'devel/llvm37/files/lldb-patch-svn-247116')
-rw-r--r--devel/llvm37/files/lldb-patch-svn-24711636
1 files changed, 0 insertions, 36 deletions
diff --git a/devel/llvm37/files/lldb-patch-svn-247116 b/devel/llvm37/files/lldb-patch-svn-247116
deleted file mode 100644
index 3f4c97439582..000000000000
--- a/devel/llvm37/files/lldb-patch-svn-247116
+++ /dev/null
@@ -1,36 +0,0 @@
-------------------------------------------------------------------------
-r247116 | sas | 2015-09-09 01:22:05 +0000 (Wed, 09 Sep 2015) | 11 lines
-
-Teach utilsOsType about NetBSD
-
-Summary: NetBSD is a free, fast, secure, and highly portable Unix-like Open Source operating system.
-
-Reviewers: joerg, sas
-
-Subscribers: sas, emaste, lldb-commits
-
-Differential Revision: http://reviews.llvm.org/D12615
-
-Change by Kamil Rytarowski <n54@gmx.com>
-------------------------------------------------------------------------
-Index: scripts/utilsOsType.py
-===================================================================
---- tools/lldb/scripts/utilsOsType.py (revision 247115)
-+++ tools/lldb/scripts/utilsOsType.py (revision 247116)
-@@ -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
-