ソースを参照

Adapt libcap instruction to the new libpsx.so shared library (was only static
before)

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@12061 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Pierre Labastie 4 年 前
コミット
e8c3099a45
1 ファイル変更8 行追加7 行削除
  1. 8 7
      chapter08/libcap.xml

+ 8 - 7
chapter08/libcap.xml

@@ -43,9 +43,9 @@
   <sect2 role="installation">
     <title>Installation of Libcap</title>
 
-    <para>Prevent a static library from being installed:</para>
+    <para>Prevent static libraries from being installed:</para>
 
-<screen><userinput remap="pre">sed -i '/install -m.*STACAPLIBNAME/d' libcap/Makefile</userinput></screen>
+<screen><userinput remap="pre">sed -i '/install -m.*STA/d' libcap/Makefile</userinput></screen>
 
     <para>Compile the package:</para>
 
@@ -72,10 +72,11 @@
     <para>Install the package and do some cleanup:</para>
 
 <screen><userinput remap="install">make lib=lib PKGCONFIGDIR=/usr/lib/pkgconfig install
-chmod -v 755 /lib/libcap.so.&libcap-version;
-mv -v /lib/libpsx.a /usr/lib
-rm -v /lib/libcap.so
-ln -sfv ../../lib/libcap.so.2 /usr/lib/libcap.so</userinput></screen>
+for libname in cap psx; do
+    chmod -v 755 /lib/lib${libname}.so.&libcap-version;
+    rm -v /lib/lib${libname}.so
+    ln -sfv ../../lib/lib${libname}.so.2 /usr/lib/lib${libname}.so
+done</userinput></screen>
 
   </sect2>
 
@@ -88,7 +89,7 @@ ln -sfv ../../lib/libcap.so.2 /usr/lib/libcap.so</userinput></screen>
 
       <seglistitem>
         <seg>capsh, getcap, getpcaps, and setcap</seg>
-        <seg>libcap.so and libpsx.a</seg>
+        <seg>libcap.so and libpsx.so</seg>
       </seglistitem>
     </segmentedlist>