Implement copy2685 for the 'install' step.

Now to add the includes to the 'configure' step.
This commit is contained in:
Nathan Rajlich 2012-02-05 13:48:40 -08:00
parent c173bf5459
commit e1982ca541

View file

@ -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)
} }