diff options
-rw-r--r-- | chapter09/theend.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter09/theend.xml b/chapter09/theend.xml index a7e5173e1..8d1111a7b 100644 --- a/chapter09/theend.xml +++ b/chapter09/theend.xml @@ -8,7 +8,7 @@ with your new shiny custom built Linux system. </para> <para> -Now would be a good time to strip all debug and compiler symbols from +Now would be a good time to strip all debug symbols from the binaries on your LFS system. If you are not a programmer and don't plan on debugging your software, then you will be happy to know that you can reclaim a few tens of megs by removing debug symbols. This process causes @@ -18,7 +18,7 @@ remove the symbols by executing the following command: </para> <blockquote><literallayout> - <userinput>find / -type f -exec strip --strip-unneeded '{}' ';' + <userinput>find / -type f -exec strip --strip-debug '{}' ';' </userinput> </literallayout></blockquote> |