mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-14 14:56:21 -04:00
17 lines
470 B
Python
17 lines
470 B
Python
$NetBSD: patch-build__tools_util.py,v 1.4 2016/05/16 11:51:49 ryoon Exp $
|
|
|
|
--- build_tools/util.py.orig 2016-05-15 08:11:10.000000000 +0000
|
|
+++ build_tools/util.py
|
|
@@ -59,6 +59,11 @@ def IsLinux():
|
|
return os.name == 'posix' and os.uname()[0] == 'Linux'
|
|
|
|
|
|
+def IsNetBSD():
|
|
+ """Returns true if the platform is NetBSD."""
|
|
+ return os.name == 'posix' and os.uname()[0] == 'NetBSD'
|
|
+
|
|
+
|
|
def GetNumberOfProcessors():
|
|
"""Returns the number of CPU cores available.
|
|
|