diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2008-10-27 07:23:19 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2008-10-27 07:23:19 +0000 |
commit | bdd7f2703c38ee8cff43504c6d3d484148a833bf (patch) | |
tree | e069823f4ce674754007aee4c523f436bce2e721 /chapter05 | |
parent | e4b8b816df71ba3d2cefe115e0e9c323364890c2 (diff) |
Added chmod instructions to e2fsprogs and tcl
to ensure all libraries are writable by root for stripping.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8709 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/e2fsprogs.xml | 5 | ||||
-rw-r--r-- | chapter05/tcl.xml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chapter05/e2fsprogs.xml b/chapter05/e2fsprogs.xml index 5c3e9cb37..5211ca666 100644 --- a/chapter05/e2fsprogs.xml +++ b/chapter05/e2fsprogs.xml @@ -60,6 +60,11 @@ cd build</userinput></screen> <screen><userinput remap="install">make install-libs</userinput></screen> + <para>Make the installed static libraries writable so debugging symbols can + be removed later.</para> + +<screen><userinput remap="install">chmod -v u+w /tools/lib/{libblkid,libcom_err,libe2p,libext2fs,libss,libuuid}.a</userinput></screen> + </sect2> <sect2 role="content"> diff --git a/chapter05/tcl.xml b/chapter05/tcl.xml index 88fa8021e..6a59a92fb 100644 --- a/chapter05/tcl.xml +++ b/chapter05/tcl.xml @@ -74,6 +74,11 @@ <screen><userinput remap="install">make install</userinput></screen> + <para>Make the installed library writable so debugging symbols can + be removed later:</para> + +<screen><userinput remap="install">chmod -v u+w /tools/lib/libtcl8.5.so</userinput></screen> + <para>Install Tcl's headers. The next package, Expect, requires them to build.</para> |