mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-07 10:02:22 +00:00
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
This commit is contained in:
parent
905a98881b
commit
5b76e726b3
@ -40,7 +40,7 @@ def getArchFlag():
|
||||
|
||||
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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user