[Pkg-javascript-commits] [node-gyp] 58/82: Add 1001 patch

Ximin Luo infinity0 at debian.org
Mon Aug 31 00:41:01 UTC 2015


This is an automated email from the git hooks/post-receive script.

infinity0 pushed a commit to branch master
in repository node-gyp.

commit 7bea2d541b6618b49c14de4102f1216ec3d85b2e
Author: Jérémy Lal <kapouer at melix.org>
Date:   Thu Sep 19 12:24:43 2013 +0200

    Add 1001 patch
---
 debian/patches/1001_kfreebsd_make.patch | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/debian/patches/1001_kfreebsd_make.patch b/debian/patches/1001_kfreebsd_make.patch
new file mode 100644
index 0000000..80be367
--- /dev/null
+++ b/debian/patches/1001_kfreebsd_make.patch
@@ -0,0 +1,16 @@
+Description: kfreebsd is using make, not gmake
+ See https://buildd.debian.org/status/fetch.php?pkg=node-srs&arch=kfreebsd-amd64&ver=0.3.2%2Bds1-1&stamp=1378120679
+Forwarded: https://github.com/TooTallNate/node-gyp/pull/331
+Author: Jérémy Lal <kapouer at melix.org>
+Last-Update: 2013-09-19
+--- a/lib/build.js
++++ b/lib/build.js
+@@ -20,7 +20,7 @@
+ function build (gyp, argv, callback) {
+ 
+   var makeCommand = gyp.opts.make || process.env.MAKE
+-      || (process.platform.indexOf('bsd') != -1 ? 'gmake' : 'make')
++      || (process.platform.indexOf('bsd') != -1 && process.platform.indexOf('kfreebsd') == -1 ? 'gmake' : 'make')
+     , command = win ? 'msbuild' : makeCommand
+     , buildDir = path.resolve('build')
+     , configPath = path.resolve(buildDir, 'config.gypi')

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-gyp.git



More information about the Pkg-javascript-commits mailing list