Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Switch from node-gyp to pangyp
Currently there's a PR (nodejs/node-gyp#564) that's awaiting
a merge that will allow us to once again use node-gyp to compile
nodegit across all platforms. Until that is merged however we can
use pangyp as a stop-gap. After that PR is merged though we should
switch back to node-gyp.
  • Loading branch information
John Haley committed Mar 10, 2015
commit dd587153b22824d299809f73bede4d7331c28278
2 changes: 1 addition & 1 deletion lifecycleScripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function build() {
var prefix = "";
var target = "";
var debug = (process.env.BUILD_DEBUG ? " --debug" : "");
var builder = "node-gyp";
var builder = "pangyp";
var distUrl = "";

if (asVersion) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
"lodash": "^3.1.0",
"mocha": "~2.1.0",
"nan": "^1.7.0",
"node-gyp": "~1.0.2",
"nw-gyp": "^0.12.4",
"pangyp": "^2.1.0",
"request": "^2.53.0",
"tar": "^1.0.3"
},
Expand Down