build: exclude a few more things from frr.xref

... this might need some better approach long-term.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
David Lamparter 2022-10-26 15:57:16 +01:00
parent 3dd40da369
commit 3727be24a0

View file

@ -161,7 +161,12 @@ 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]))