diff options
author | David Carlier <devnexen@gmail.com> | 2019-08-25 16:49:46 +0100 |
---|---|---|
committer | Daniel Bevenius <daniel.bevenius@gmail.com> | 2019-08-29 06:09:05 +0200 |
commit | 8675152f0f15002915225216f48e8bdd39612a81 (patch) | |
tree | 5fbc3dec827978d038ab28a3ce0752eeda5f49b5 /tools/gyp | |
parent | a194eacc96116a8253dcb0c6114204eea4972df3 (diff) | |
download | node-new-8675152f0f15002915225216f48e8bdd39612a81.tar.gz |
build: integrate DragonFlyBSD into gyp build
PR-URL: https://github.com/nodejs/node/pull/29313
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'tools/gyp')
-rw-r--r-- | tools/gyp/pylib/gyp/common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/gyp/pylib/gyp/common.py b/tools/gyp/pylib/gyp/common.py index cfee9d4592..e6280d2476 100644 --- a/tools/gyp/pylib/gyp/common.py +++ b/tools/gyp/pylib/gyp/common.py @@ -421,6 +421,8 @@ def GetFlavor(params): return 'solaris' if sys.platform.startswith('freebsd'): return 'freebsd' + if sys.platform.startswith('dragonfly'): + return 'freebsd' if sys.platform.startswith('openbsd'): return 'openbsd' if sys.platform.startswith('netbsd'): |