ld-elf.so.1: Shared object "%%LIBCUSE%%" not found

Hello,

I noticed this error message which shows up seven times at boot:

Code:
[...]
Starting devd.
em0: link state changed to UP
ld-elf.so.1: Shared object "%%LIBCUSE%%" not found
ld-elf.so.1: Shared object "%%LIBCUSE%%" not found
ld-elf.so.1: Shared object "%%LIBCUSE%%" not found
ld-elf.so.1: Shared object "%%LIBCUSE%%" not found
ld-elf.so.1: Shared object "%%LIBCUSE%%" not found
ld-elf.so.1: Shared object "%%LIBCUSE%%" not found
Configuring vt: keymap.
Autoloading module: uhid
Autoloading module: usbhid
Autoloading module: wmt
ld-elf.so.1: Shared object "%%LIBCUSE%%" not found
usbhid0 on uhub3
usbhid0: <USB Keyboard> on usbus1
hidbus0: <HID bus> on usbhid0
[...]

What does this mean? Any idea how to fix?

I do have cuse_load="YES" in /boot/loader.conf and the module is loaded properly.
 
Check the contents of /usr/local/etc/libmap.d. It looks like some port/package wrote a file there without translating the %%LIBCUSE%% macro/placeholder.
 
The only file in that directory is mesa.conf with the following content:
Code:
libGLX_indirect.so.0 libGLX_mesa.so.0
 
Maybe it got added to /etc/libmap.conf (it shouldn't but the error has to come from somewhere).
 
Nothing special there:

/etc/libmap.conf
Code:
# $FreeBSD$
includedir /usr/local/etc/libmap.d
 
Back
Top