summaryrefslogtreecommitdiff
path: root/node.gyp
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-10-30 13:45:10 +0100
committerDaniel Bevenius <daniel.bevenius@gmail.com>2017-11-01 09:25:05 +0100
commit18df171307495e639be214917d2a247163a21268 (patch)
tree9462868fd3815578db58d13b0c168f2b0fcf6046 /node.gyp
parent54946b651b142e635d25fbafd7751aebb1d67ede (diff)
downloadnode-new-18df171307495e639be214917d2a247163a21268.tar.gz
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 <gpunathi@in.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.gyp b/node.gyp
index 39ec90fa3d..1c3e291471 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',