From 92dc1f3f5b52a9b357a0a62a67ae561bc70376e0 Mon Sep 17 00:00:00 2001 From: Michael Dawson Date: Thu, 25 Aug 2016 15:32:12 -0400 Subject: [PATCH] build: fix dependencies on AIX MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-By: Ben Noordhuis Reviewed-By: Anna Henningsen Reviewed-By: Johan Bergström --- node.gyp | 1 + 1 file changed, 1 insertion(+) diff --git a/node.gyp b/node.gyp index 341ac34dce4c26..d6511793e07a3b 100644 --- a/node.gyp +++ b/node.gyp @@ -731,6 +731,7 @@ }, { 'target_name': 'node_exp', + 'process_outputs_as_sources': 1, 'type': 'none', 'dependencies': [ '<(node_core_target_name)',