summaryrefslogtreecommitdiff
path: root/benchmark/run.js
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2009-10-25 22:51:10 +0100
committerRyan Dahl <ry@tinyclouds.org>2009-10-25 22:51:57 +0100
commit04e53cab90d14ee668e7e63e54a8ef9f4a8b564d (patch)
treeea0b403d10bdbd3d4ecc447b92b55797062af584 /benchmark/run.js
parent4bcb01c8bf6ec1074592a691cbadd2dc50ead35a (diff)
downloadandroid-node-v8-04e53cab90d14ee668e7e63e54a8ef9f4a8b564d.tar.gz
android-node-v8-04e53cab90d14ee668e7e63e54a8ef9f4a8b564d.tar.bz2
android-node-v8-04e53cab90d14ee668e7e63e54a8ef9f4a8b564d.zip
Rename node.libraryPaths to require.paths
to be more inline with CommonJS.
Diffstat (limited to 'benchmark/run.js')
-rw-r--r--benchmark/run.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/run.js b/benchmark/run.js
index 6379a16fe2..965022b3f9 100644
--- a/benchmark/run.js
+++ b/benchmark/run.js
@@ -1,5 +1,5 @@
libDir = node.path.join(node.path.dirname(__filename), "../lib");
-node.libraryPaths.unshift(libDir);
+require.paths.unshift(libDir);
node.mixin(require("/utils.js"));
var benchmarks = [ "static_http_server.js"
, "timers.js"