diff options
author | Xi Ruoyao <xry111@mengyan1223.wang> | 2021-03-28 15:11:25 +0000 |
---|---|---|
committer | Xi Ruoyao <xry111@mengyan1223.wang> | 2021-03-28 15:11:25 +0000 |
commit | 8d557ad89d660aba47a9932e28cc1e65666da1fe (patch) | |
tree | 46a08ddaad44b1d92625663d0d6e495f94caa192 /chapter06 | |
parent | 2ec1c1574a40ab987ee9b1e967d05ba717ff4c22 (diff) |
file: secure the URL, add libseccomp as external dep, and move libmagic.so to /lib
/bin/more links to libmagic.so (found on gimli and rivendell with a script)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@12174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/file.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chapter06/file.xml b/chapter06/file.xml index dc6024177..b44a639be 100644 --- a/chapter06/file.xml +++ b/chapter06/file.xml @@ -90,6 +90,12 @@ popd</userinput></screen> <screen><userinput remap="install">make DESTDIR=$LFS install</userinput></screen> + <para>Move a shared library into its final location in the LFS system, + and recreate the symlink for it:</para> + +<screen><userinput remap="install">mv -v $LFS/usr/lib/libmagic.so.* $LFS/lib +ln -sfv ../../lib/$(readlink /usr/lib/libmagic.so) $LFS/usr/lib/libmagic.so</userinput></screen> + </sect2> <sect2 role="content"> |