mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-15 13:43:40 +02:00
Implement copy2685 for the 'install' step.
Now to add the includes to the 'configure' step.
This commit is contained in:
parent
c173bf5459
commit
e1982ca541
1 changed files with 6 additions and 2 deletions
|
@ -260,8 +260,12 @@ function install (gyp, argv, callback) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function copy2685 (done) {
|
function copy2685 (done) {
|
||||||
//done(new Error('implement me!'))
|
gyp.verbose('need to install the patch gypi file for version', version)
|
||||||
done()
|
var patchPath = path.join(__dirname, '..', '2685', 'patch.gypi')
|
||||||
|
, copyTo = path.join(devDir, 'tools', 'patch.gypi')
|
||||||
|
gyp.verbose('patch.gypi', patchPath)
|
||||||
|
gyp.verbose('copy to', copyTo)
|
||||||
|
copy(patchPath, copyTo, done)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue