Hi, On Sat, Dec 5, 2020 at 6:32 AM Ian Kent <raven@xxxxxxxxxx> wrote: > Removing the LDFLAGS option -Wl,-Bsymbolic-functions makes the > problem go away. Related: https://www.spinics.net/lists/autofs/msg01903.html In Ubuntu, -Wl,-Bsymbolic-functions is a system-wide default and we remove it from the flags when building autofs in d/rules: # Taken from #1636781 as it's the same problem here. Also see # https://lists.ubuntu.com/archives/ubuntu-devel/2018-June/040369.html ifeq ($(shell dpkg-vendor --derives-from Ubuntu && echo yes),yes) export DEB_LDFLAGS_MAINT_STRIP = -Wl,-Bsymbolic-functions endif > I'm not sure why this happens, the best I could find is this: > https://stackoverflow.com/questions/7216973/is-there-a-downside-to-using-bsymbolic-functions/20729291 > > Ian >