From 70f0882d4c658c6d1355218fccf821ca31d0af18 Mon Sep 17 00:00:00 2001 From: Thomas Trepl Date: Sun, 14 Jun 2020 21:03:26 +0000 Subject: No /lib64 on i686 git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross2@11941 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter04/creatingminlayout.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'chapter04/creatingminlayout.xml') diff --git a/chapter04/creatingminlayout.xml b/chapter04/creatingminlayout.xml index 44cca8d22..731d21c54 100644 --- a/chapter04/creatingminlayout.xml +++ b/chapter04/creatingminlayout.xml @@ -19,7 +19,10 @@ Create the required directory layout by running the following as root: -mkdir -pv $LFS/{usr,lib,var,etc,bin,sbin,lib64} +mkdir -pv $LFS/{usr,lib,var,etc,bin,sbin} +case $(uname -m) in + x86_64) mkdir -pv $LFS/lib64 ;; +esac Programs in will be compiled with a cross-compiler (more details in section