summaryrefslogtreecommitdiff
path: root/python/makefile.py
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2022-11-03 08:54:09 -0400
committerGitHub <noreply@github.com>2022-11-03 08:54:09 -0400
commitd7cde18c63c4eef83e12f562aa025cf1dbeaee05 (patch)
tree591e68540bb026cfe9f212a69c150bfcfa8bbf36 /python/makefile.py
parent70f29b9f7bf157cd439518cba0ecd52efcf22429 (diff)
parent6c7bc49428b594e0747af9813b4c510bd2817f4e (diff)
Merge pull request #12196 from opensourcerouting/xref-vtysh
*: rewrite `extract.pl` using `xref` infra
Diffstat (limited to 'python/makefile.py')
-rw-r--r--python/makefile.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/python/makefile.py b/python/makefile.py
index bd897b7508..573871fb68 100644
--- a/python/makefile.py
+++ b/python/makefile.py
@@ -161,7 +161,15 @@ for clippy_file in clippy_scan:
# combine daemon .xref files into frr.xref
out_lines.append("")
xref_targets = [
- target for target in xref_targets if target not in ["tools/ssd", "vtysh/vtysh"]
+ target
+ for target in xref_targets
+ if target
+ not in [
+ "bgpd/rfp-example/rfptest/rfptest",
+ "pimd/mtracebis",
+ "tools/ssd",
+ "vtysh/vtysh",
+ ]
]
out_lines.append(
"xrefs = %s" % (" ".join(["%s.xref" % target for target in xref_targets]))