Skip to content

Commit

Permalink
build: add node.exp and node.lib files to tar-headers
Browse files Browse the repository at this point in the history
tools/install.py will now include the AIX node.exp and the Windows
node.lib file if they are present.
  • Loading branch information
gibfahn committed May 9, 2016
1 parent 4e6dc00 commit 8d65f17
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,13 @@ def headers(action):
], 'include/node/')

# Add the expfile that is created on AIX
if sys.platform.startswith('aix'):
if os.isfile('out/Release/node.exp'):
action(['out/Release/node.exp'], 'include/node/')

# Add the x64 windows libfile
if os.isfile('Release/node.lib'):
action(['Release/node.lib'], 'include/node/')

subdir_files('deps/v8/include', 'include/node/', action)

if 'false' == variables.get('node_shared_cares'):
Expand Down

0 comments on commit 8d65f17

Please sign in to comment.