From 5ed9d2990f769277c584cc18469e2a81c14adda0 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 c226a87722..590b929a15 100644 --- a/node.gyp +++ b/node.gyp @@ -292,7 +292,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',