diff options
author | Michael Dawson <michael_dawson@ca.ibm.com> | 2016-08-25 15:32:12 -0400 |
---|---|---|
committer | Michael Dawson <michael_dawson@ca.ibm.com> | 2016-08-25 18:28:58 -0400 |
commit | 063d14e49628d9fe969a592e3cde7fde70778852 (patch) | |
tree | 513bffbda153ecf5b718672920a9ff6525b64436 /node.gyp | |
parent | 18017d675ba49be9fcee242c876bf9b06c10e813 (diff) | |
download | node-new-063d14e49628d9fe969a592e3cde7fde70778852.tar.gz |
build: fix dependencies on AIX
Addon tests were starting to run before the node exp file
creation was complete. Add process_outputs_as_sources to avoid
this.
Fixes: https://github.com/nodejs/node/issues/8239
PR-URL: https://github.com/nodejs/node/pull/8272
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Johan Bergström <bugs@bergstroem.nu>
Diffstat (limited to 'node.gyp')
-rw-r--r-- | node.gyp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -906,6 +906,7 @@ }, { 'target_name': 'node_exp', + 'process_outputs_as_sources': 1, 'type': 'none', 'dependencies': [ '<(node_core_target_name)', |