Lines 1-20
Link Here
|
1 |
--- tools/install.py.orig 2012-08-29 04:51:31.000000000 +0800 |
1 |
--- tools/install.py.orig 2012-09-18 08:54:59.000000000 +0800 |
2 |
+++ tools/install.py 2012-09-04 13:26:40.000000000 +0800 |
2 |
+++ tools/install.py 2012-09-18 12:17:19.000000000 +0800 |
3 |
@@ -135,7 +135,7 @@ |
3 |
@@ -114,7 +114,7 @@ |
4 |
'deps/uv/include/uv-private/uv-unix.h', |
4 |
assert(0) # unhandled action type |
5 |
'deps/uv/include/uv-private/uv-win.h'], |
5 |
|
6 |
'include/node/uv-private/') |
6 |
def files(action): |
7 |
- action(['doc/node.1'], 'share/man/man1/') |
7 |
- action(['doc/node.1'], 'share/man/man1/') |
8 |
+ action(['doc/node.1'], 'man/man1/') |
8 |
+ action(['doc/node.1'], 'man/man1/') |
9 |
action(['out/Release/node'], 'bin/node') |
9 |
action(['out/Release/node'], 'bin/node') |
10 |
|
10 |
|
11 |
# install unconditionally, checking if the platform supports dtrace doesn't |
11 |
# install unconditionally, checking if the platform supports dtrace doesn't |
12 |
@@ -143,7 +143,7 @@ |
|
|
13 |
# with dtrace support now (oracle's "unbreakable" linux) |
14 |
action(['src/node.d'], 'lib/dtrace/') |
15 |
|
16 |
- if variables.get('node_install_npm'): npm_files(action) |
17 |
+ if 'true' == variables.get('node_install_npm'): npm_files(action) |
18 |
|
19 |
def run(args): |
20 |
global dst_dir, node_prefix, target_defaults, variables |