Skip to content

Commit

Permalink
installer: don't install header files
Browse files Browse the repository at this point in the history
They are no longer necessary now that node-waf has been removed. People need to
switch to node-gyp.
  • Loading branch information
bnoordhuis committed Sep 9, 2012
1 parent dba47ae commit 5d9968f
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions tools/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,27 +114,6 @@ def npm_files(action):
assert(0) # unhandled action type

def files(action):
action(['deps/uv/include/uv.h',
'deps/v8/include/v8-debug.h',
'deps/v8/include/v8-preparser.h',
'deps/v8/include/v8-profiler.h',
'deps/v8/include/v8-testing.h',
'deps/v8/include/v8.h',
'deps/v8/include/v8stdint.h',
'src/eio-emul.h',
'src/ev-emul.h',
'src/node.h',
'src/node_buffer.h',
'src/node_object_wrap.h',
'src/node_version.h'],
'include/node/')
action(['deps/uv/include/uv-private/eio.h',
'deps/uv/include/uv-private/ev.h',
'deps/uv/include/uv-private/ngx-queue.h',
'deps/uv/include/uv-private/tree.h',
'deps/uv/include/uv-private/uv-unix.h',
'deps/uv/include/uv-private/uv-win.h'],
'include/node/uv-private/')
action(['doc/node.1'], 'share/man/man1/')
action(['out/Release/node'], 'bin/node')

Expand Down

0 comments on commit 5d9968f

Please sign in to comment.