4ead62abd1
Changes since nodejs 8.8.1: - doc: add Gibson Fahnestock to Release team - deps: update npm to 5.5.1 - http2: The exposed http2 socket is no longer manipulatable - module: support custom paths to require.resolve() - util: util.TextEncoder and util.TextDecoder are no longer experimental. There will no longer be a warning when they are used
14 lines
491 B
Python
14 lines
491 B
Python
$NetBSD: patch-tools_gyp_pylib_gyp_common.py,v 1.1 2017/11/01 12:07:31 fhajny Exp $
|
|
|
|
Add support for NetBSD and DragonFly.
|
|
--- tools/gyp/pylib/gyp/common.py.orig 2017-05-03 02:00:16.000000000 +0000
|
|
+++ tools/gyp/pylib/gyp/common.py
|
|
@@ -427,6 +427,8 @@ def GetFlavor(params):
|
|
return 'openbsd'
|
|
if sys.platform.startswith('netbsd'):
|
|
return 'netbsd'
|
|
+ if sys.platform.startswith('dragonflybsd'):
|
|
+ return 'dragonflybsd'
|
|
if sys.platform.startswith('aix'):
|
|
return 'aix'
|
|
|