From 3ca202fe7383e058424abdda106d9f3d280d28ae 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 --- 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',