We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04a99d commit 7ec91d6Copy full SHA for 7ec91d6
1 file changed
lib/build.js
@@ -1,4 +1,3 @@
1
-
2
module.exports = exports = build
3
4
/**
@@ -20,7 +19,7 @@ exports.usage = 'Invokes `' + (win ? 'msbuild' : 'make') + '` and builds the mod
20
19
function build (gyp, argv, callback) {
21
22
var makeCommand = gyp.opts.make || process.env.MAKE
23
- || (process.platform.indexOf('bsd') != -1 ? 'gmake' : 'make')
+ || (process.platform.indexOf('bsd') != -1 && process.platform.indexOf('kfreebsd') == -1 ? 'gmake' : 'make')
24
, command = win ? 'msbuild' : makeCommand
25
, buildDir = path.resolve('build')
26
, configPath = path.resolve(buildDir, 'config.gypi')
0 commit comments