diff options
author | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2008-12-03 22:46:04 +0000 |
---|---|---|
committer | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2008-12-03 22:46:04 +0000 |
commit | 6e886330cf157dc71e6a0a1fca410d7005683167 (patch) | |
tree | 0d8c4ae5a6429328469c512bb9f6661ad3886e19 /chapter06/coreutils.xml | |
parent | b0e1dc860c471d7047fc906001f3a336ef5f357c (diff) |
Initial addition of support for x86_64
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8754 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/coreutils.xml')
-rw-r--r-- | chapter06/coreutils.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index b045897f4..493b39593 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -46,7 +46,9 @@ returns <computeroutput>unknown</computeroutput>. The following patch fixes this behavior for Intel architectures:</para> -<screen><userinput remap="pre">patch -Np1 -i ../&coreutils-uname-patch;</userinput></screen> +<screen><userinput remap="pre">case `uname -m` in + i?86 | x86_64) patch -Np1 -i ../&coreutils-uname-patch; ;; +esac</userinput></screen> <para>There's an internal issue with Coreutils which makes some of the programs behave abnormally if you build using an older kernel. Apply a |