On Tue, Jul 13, 2010 at 04:00:44PM +0200, Helge Hafting wrote: > When I use "opkg upgrade", i get several messages like this one: > > Configuring libgio-2.0-0. > /sbin/ldconfig: /usr/lib/libstdc++.so.6.0.14-gdb.py is not an ELF > file - it has the wrong magic bytes at the start.
ldconfig is trying all files in /lib and /usr/lib and used filters are basically: - regular file - lib*, ld-* - *.so* and then it expects all to be ELF files. See search_dir function in http://www.eglibc.org/cgi-bin/viewcvs.cgi/trunk/libc/elf/ldconfig.c?rev=10439&view=log This warning is harmless and .py file is skipped by ldconfig. If it bothers you.. you can propose stricter filters upstream (glibc). Regards, -- Martin 'JaMa' Jansa jabber: [email protected] _______________________________________________ Shr-User mailing list [email protected] http://lists.shr-project.org/mailman/listinfo/shr-user
