diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2022-10-26 16:57:16 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2022-10-26 18:12:34 +0200 |
commit | 3727be24a032e0577d19ccf5ad995059f7cf6d68 (patch) | |
tree | 958aea2e929748eb5f27945001bd19e7b7092d2f /python | |
parent | python: fix for old (< 3.6) Python versions (diff) | |
download | frr-3727be24a032e0577d19ccf5ad995059f7cf6d68.tar.xz frr-3727be24a032e0577d19ccf5ad995059f7cf6d68.zip |
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>
Diffstat (limited to 'python')
-rw-r--r-- | python/makefile.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/python/makefile.py b/python/makefile.py index bd897b750..7a682615e 100644 --- a/python/makefile.py +++ b/python/makefile.py @@ -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])) |