diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-12-31 11:15:00 -0600 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-12-31 11:15:00 -0600 |
commit | 1e6c82bb0952f853a1346bc81434aef1fded76ff (patch) | |
tree | b2bc83ed8c797d92a2a4da995effc01a7d7be93b /chapter08/cleanup.xml | |
parent | 888103db3c656fea2352b29c0ea55c62da150613 (diff) | |
parent | dfb8516c83c2a3377829096892579c969e0a5906 (diff) |
Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunk
Diffstat (limited to 'chapter08/cleanup.xml')
-rw-r--r-- | chapter08/cleanup.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chapter08/cleanup.xml b/chapter08/cleanup.xml index c55b7af2f..daa38f597 100644 --- a/chapter08/cleanup.xml +++ b/chapter08/cleanup.xml @@ -10,16 +10,16 @@ <title>Cleaning Up</title> - <para>Finally, clean up some extra files left around from running tests:</para> + <para>Finally, clean up some extra files left over from running tests:</para> <screen><userinput>rm -rf /tmp/*</userinput></screen> - <para>There are also several files installed in the /usr/lib and /usr/libexec + <para>There are also several files in the /usr/lib and /usr/libexec directories with a file name extension of .la. These are "libtool archive" - files. As already said, on a modern Linux system the libtool .la files are + files. On a modern Linux system the libtool .la files are only useful for libltdl. No libraries in LFS are expected to be loaded - by libltdl, and it's known that some .la files can cause BLFS packages - fail to build. Remove those files now:</para> + by libltdl, and it's known that some .la files can break BLFS package + builds. Remove those files now:</para> <screen><userinput>find /usr/lib /usr/libexec -name \*.la -delete</userinput></screen> |