ftbfs in subversion related to linker change?
Loïc Minier
loic.minier at ubuntu.com
Tue Nov 16 00:55:06 GMT 2010
On Mon, Nov 15, 2010, Barry Warsaw wrote:
> ERROR: ld.so: object 'libfakeroot-sysv.so' from LD_PRELOAD cannot be preloaded: ignored.
I see an override of LD_LIBRARY_PATH in the line befor the failure;
this usually breaks fakeroot
You want something like:
LD_LIBRARY_PATH="yourdir:$LD_LIBRARY_PATH" yourcommand
and that should work
I don't think it relates to the toolchain changes.
NB: the above is insecure in general purpose shell scripts; if
LD_LIBRARY_PATH has an empty string in the list, it means current
directory and is extremely dangerous; you can do something like:
LD_LIBRARY_PATH="yourdir${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
to be secure
Cheers
--
Loïc Minier
More information about the ubuntu-devel
mailing list