[Pkg-javascript-commits] [SCM] turn an object into a persistent execution context branch, master, updated. debian/0.1.2-1-1-gcc2fd84

David Paleino dapal at debian.org
Tue Apr 24 19:58:39 UTC 2012


The following commit has been merged in the master branch:
commit cc2fd845d52ed9b1aa4acbbdec39c9bcdc1cfa0a
Author: David Paleino <dapal at debian.org>
Date:   Tue Apr 24 21:58:33 2012 +0200

    Fixed reference to local compiled version of the module (Closes: #670312)

diff --git a/debian/changelog b/debian/changelog
index d4bebe0..dc05f8e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+node-contextify (0.1.2-2) UNRELEASED; urgency=low
+
+  * Fixed reference to local compiled version of the module
+    (Closes: #670312)
+
+ -- David Paleino <dapal at debian.org>  Tue, 24 Apr 2012 21:58:09 +0200
+
 node-contextify (0.1.2-1) unstable; urgency=low
 
   * New upstream version
diff --git a/debian/patches/00-fix_require.patch b/debian/patches/00-fix_require.patch
index 968462b..eaa6d9f 100644
--- a/debian/patches/00-fix_require.patch
+++ b/debian/patches/00-fix_require.patch
@@ -11,7 +11,7 @@ Forwarded: no
 +++ node-contextify/lib/contextify.js
 @@ -1,4 +1,4 @@
 -var ContextifyContext = require('bindings')('contextify').ContextifyContext;
-+var ContextifyContext = require('contextify').ContextifyContext;
++var ContextifyContext = require('./contextify').ContextifyContext;
  
  module.exports = function Contextify (sandbox) {
      if (typeof sandbox != 'object') {

-- 
turn an object into a persistent execution context



More information about the Pkg-javascript-commits mailing list