On 3/5/26 10:38 AM, Thomas Goirand wrote: > Hi there! > > I'm trying to solve this Debian bug: > https://bugs.debian.org/1104378 > > To me, it looks like a missing dependency somewhere in a Makefile.am, > but I couldn't figure out how to fix, especially because it happens > randomly. > > Could someone help me for this?
My best guess is that the netlink-devlink.c is getting built multiple times in parallel because both the library and the test utility directly depend on the object file: https://github.com/ovn-org/ovn-vif/blob/0e289d0f3d92662abb409e7b4ead126f8af401dc/tests/automake.mk#L76C11-L76C38 I'd suggest to try and make the test depend on the library (lib/libovn-vif.la) and not the object file directly. CC: Frode Best regards, Ilya Maximets. > > Cheers, > > Thomas Goirand (zigo) > > P.S: Please keep me and the Debian bug as CC to this thread, as I'm not > registered to this list.

