Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2013-01-29 12:11:08 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2013-01-29 12:11:08 (GMT)
commit1ed44dab05e665cccb364e7b4af47ad4135ee304 (patch)
tree1959ea64c605d07dbf4d4fc3349647f79b5561c0
parent67792e7e020b0f7675fa14198af7d59b8dc6b732 (diff)
Set NODE_PATH
-rw-r--r--devbot/environ.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/devbot/environ.py b/devbot/environ.py
index 9130984..5e595ce 100644
--- a/devbot/environ.py
+++ b/devbot/environ.py
@@ -28,7 +28,9 @@ def setup_variables():
add_path("PKG_CONFIG_PATH",
os.path.join(config.lib_dir, "pkgconfig"))
add_path("GST_PLUGIN_PATH",
- os.path.join(config.lib_dir, "gstreamer-1.0"))
+ os.path.join(config.lib_dir, "gstreamer-1.0"))
+ add_path("NODE_PATH",
+ os.path.join(config.prefix_dir, "lib", "node_modules"))
add_path("PYTHONPATH",
sysconfig.get_python_lib(prefix=config.prefix_dir))
add_path("PYTHONPATH",