]> git.proxmox.com Git - mirror_frr.git/commitdiff
build: exclude a few more things from frr.xref
authorDavid Lamparter <equinox@opensourcerouting.org>
Wed, 26 Oct 2022 14:57:16 +0000 (15:57 +0100)
committerDavid Lamparter <equinox@opensourcerouting.org>
Wed, 26 Oct 2022 16:12:34 +0000 (17:12 +0100)
... this might need some better approach long-term.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
python/makefile.py

index bd897b75085c2b892fdde7aa148e57b0f1837dd9..7a682615ef2c3a84e3f501f8e7e79a3365091706 100644 (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]))