diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-01-13 18:27:40 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-01-13 18:27:40 +0000 |
commit | a5ad6a896c244cdb0745c5828361771eb9166b75 (patch) | |
tree | 9ffaf6c942f165f0485e7ed2bed8288a354ee7ab /chapter06 | |
parent | 912108f0925faa527af5ab28dfe69bd9db135ffc (diff) |
Clean up zstd installation
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11729 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/zstd.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chapter06/zstd.xml b/chapter06/zstd.xml index 3b73a9f5d..71e7794b6 100644 --- a/chapter06/zstd.xml +++ b/chapter06/zstd.xml @@ -52,6 +52,15 @@ <screen><userinput remap="install">make prefix=/usr install</userinput></screen> + <para>Remove the static library and move the shared library to + <filename class="directory">/lib</filename>. Also, the + <filename class="extension">.so</filename> file in + <filename class="directory">/usr/lib</filename> will need to be recreated:</para> + +<screen><userinput remap="install">rm -v /usr/lib/libzstd.a +mv -v /usr/lib/libzstd.so.* /lib +ln -sfv ../../lib/$(readlink /usr/lib/libzstd.so) /usr/lib/libzstd.so</userinput></screen> + </sect2> <sect2 id="contents-zstd" role="content"> |