Skip to content

Commit 5b76e72

Browse files
committedDec 7, 2015
Return gmake as the default name for GNU make on NetBSD
Summary: The base make(1) on NetBSD is BSD make. In the default installation of NetBSD GNU make comes via pkgsrc under the gmake name. Reviewers: emaste, tfiala, clayborg Subscribers: joerg, lldb-commits Differential Revision: http://reviews.llvm.org/D15261 llvm-svn: 254947
1 parent 905a988 commit 5b76e72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lldb/packages/Python/lldbsuite/test/plugins/builder_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def getArchFlag():
4040

4141
def getMake():
4242
"""Returns the name for GNU make"""
43-
if platform.system() == "FreeBSD":
43+
if platform.system() == "FreeBSD" or platform.system() == "NetBSD":
4444
return "gmake"
4545
else:
4646
return "make"

0 commit comments

Comments
 (0)