diff options
Diffstat (limited to 'python/makefile.py')
| -rw-r--r-- | python/makefile.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/makefile.py b/python/makefile.py index afc993b5b9..573871fb68 100644 --- a/python/makefile.py +++ b/python/makefile.py @@ -160,6 +160,17 @@ 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 [ + "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])) ) |
