[Lldb-commits] [PATCH] D15261: Return gmake as the default name for GNU make on NetBSD

Kamil Rytarowski via lldb-commits lldb-commits at lists.llvm.org
Sat Dec 5 21:11:58 PST 2015


krytarowski created this revision.
krytarowski added reviewers: emaste, clayborg, tfiala.
krytarowski added subscribers: lldb-commits, joerg.
krytarowski set the repository for this revision to rL LLVM.

The base make(1) on NetBSD is BSD make.

In the default installation of NetBSD GNU make comes via pkgsrc under the gmake name.

Repository:
  rL LLVM

http://reviews.llvm.org/D15261

Files:
  packages/Python/lldbsuite/test/plugins/builder_base.py

Index: packages/Python/lldbsuite/test/plugins/builder_base.py
===================================================================
--- packages/Python/lldbsuite/test/plugins/builder_base.py
+++ packages/Python/lldbsuite/test/plugins/builder_base.py
@@ -40,7 +40,7 @@
 
 def getMake():
     """Returns the name for GNU make"""
-    if platform.system() == "FreeBSD":
+    if platform.system() == "FreeBSD" or platform.system() == "NetBSD":
       return "gmake"
     else:
       return "make"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D15261.42000.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20151206/49d295a0/attachment.bin>


More information about the lldb-commits mailing list