diff options
author | Xi Ruoyao <xry111@xry111.site> | 2022-10-09 13:30:58 +0800 |
---|---|---|
committer | Xi Ruoyao <xry111@xry111.site> | 2022-10-09 13:35:48 +0800 |
commit | 68588615e6a546bd7d5c9e5a6f0d91209217c799 (patch) | |
tree | dc07900e2dac5afa0da88d0231a42c0a0e1b16db /chapter06 | |
parent | b6d3512cc55d524c55edb7aed37e21b65ebf29b6 (diff) |
temp bash: fix "support/config.guess: Permission denied"
In bash-5.2 tarball config.guess is not executable, so we need to run
the script with an explicit "sh".
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/bash.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter06/bash.xml b/chapter06/bash.xml index d462d2631..d00e685ca 100644 --- a/chapter06/bash.xml +++ b/chapter06/bash.xml @@ -45,9 +45,9 @@ <para>Prepare Bash for compilation:</para> -<screen><userinput remap="configure">./configure --prefix=/usr \ - --build=$(support/config.guess) \ - --host=$LFS_TGT \ +<screen><userinput remap="configure">./configure --prefix=/usr \ + --build=$(sh support/config.guess) \ + --host=$LFS_TGT \ --without-bash-malloc</userinput></screen> <variablelist> |