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

-- 
ubuntu-devel mailing list
[email protected]
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-devel

Reply via email to