diff options
Diffstat (limited to 'chapter06/revisedchroot.xml')
-rw-r--r-- | chapter06/revisedchroot.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chapter06/revisedchroot.xml b/chapter06/revisedchroot.xml index 10e68daea..eb40fb7ce 100644 --- a/chapter06/revisedchroot.xml +++ b/chapter06/revisedchroot.xml @@ -59,8 +59,10 @@ rm -f /usr/lib/libz.a</userinput></screen> <para>There are also several files installed in the /usr/lib and /usr/libexec directories with a file name extention of .la. These are "libtool archive" - files and generally unneeded on a linux system. None of these are necessary - at this point. To remove them, run:</para> + files. As already said, they are only useful when linking with static + libraries. They are unneeded, and potentially harmful, when using dynamic + shared libraries, specially when using also non-autotools build systems. + To remove them, run:</para> <screen><userinput>find /usr/lib /usr/libexec -name \*.la -delete</userinput></screen> |