aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorXi Ruoyao <xry111@xry111.site>2022-10-09 13:30:58 +0800
committerXi Ruoyao <xry111@xry111.site>2022-10-09 13:35:48 +0800
commit68588615e6a546bd7d5c9e5a6f0d91209217c799 (patch)
treedc07900e2dac5afa0da88d0231a42c0a0e1b16db /chapter06
parentb6d3512cc55d524c55edb7aed37e21b65ebf29b6 (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.xml6
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>