From 18df171307495e639be214917d2a247163a21268 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 30 Oct 2017 13:45:10 +0100 Subject: [PATCH] build: add missing comma in sources list This commit adds a missing comma in the sources list. This effects at least window which produces the following warning where trace_event.h and src/util.h are concatenated: Warning: Missing input files: src\tracing\trace_event.hsrc\util.h PR-URL: https://github.com/nodejs/node/pull/16613 Reviewed-By: Gireesh Punathil Reviewed-By: Richard Lau Reviewed-By: Colin Ihrig Reviewed-By: Minwoo Jung Reviewed-By: Gibson Fahnestock Reviewed-By: Joyee Cheung Reviewed-By: Anatoli Papirovski --- node.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.gyp b/node.gyp index 39ec90fa3dadc0..1c3e29147140e7 100644 --- a/node.gyp +++ b/node.gyp @@ -284,7 +284,7 @@ 'src/tracing/agent.h', 'src/tracing/node_trace_buffer.h', 'src/tracing/node_trace_writer.h', - 'src/tracing/trace_event.h' + 'src/tracing/trace_event.h', 'src/util.h', 'src/util-inl.h', 'deps/http_parser/http_parser.h',