forked from Mirror/frr
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:
parent
3dd40da369
commit
3727be24a0
|
@ -161,7 +161,12 @@ for clippy_file in clippy_scan:
|
||||||
# combine daemon .xref files into frr.xref
|
# combine daemon .xref files into frr.xref
|
||||||
out_lines.append("")
|
out_lines.append("")
|
||||||
xref_targets = [
|
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(
|
out_lines.append(
|
||||||
"xrefs = %s" % (" ".join(["%s.xref" % target for target in xref_targets]))
|
"xrefs = %s" % (" ".join(["%s.xref" % target for target in xref_targets]))
|
||||||
|
|
Loading…
Reference in a new issue