File: 00-fix_require.patch

package info (click to toggle)
node-contextify 0.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 168 kB
  • ctags: 127
  • sloc: cpp: 258; makefile: 33
file content (17 lines) | stat: -rw-r--r-- 497 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
From: David Paleino <dapal@debian.org>
Subject: fix requirement of compiled module
Origin: vendor
Forwarded: no

---
 lib/contextify.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- node-contextify-0.1.6.orig/lib/contextify.js
+++ node-contextify-0.1.6/lib/contextify.js
@@ -1,4 +1,4 @@
-var binding = require('bindings')('contextify');
+var binding = require('./contextify');
 var ContextifyContext = binding.ContextifyContext;
 var ContextifyScript = binding.ContextifyScript;