aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/buildgen/bunch.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/buildgen/bunch.py')
-rwxr-xr-xtools/buildgen/bunch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/buildgen/bunch.py b/tools/buildgen/bunch.py
index 0db8792523..1f17ccb31b 100755
--- a/tools/buildgen/bunch.py
+++ b/tools/buildgen/bunch.py
@@ -57,6 +57,7 @@ def merge_json(dst, add):
if isinstance(dst, dict) and isinstance(add, dict):
for k, v in add.items():
if k in dst:
+ if k == '#': continue
merge_json(dst[k], v)
else:
dst[k] = v