aboutsummaryrefslogtreecommitdiffstats
path: root/chapter6/bash.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-23 13:17:02 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-23 13:17:02 -0500
commit66d4171655e0b93766c82f50ce06521f85b58222 (patch)
tree1b6d1cbcbc169e5cbb4e6ea6698ed91d82d7cc88 /chapter6/bash.sh
parent9d68d5da4115353816ab4f6b1c7a4f5db43576f9 (diff)
parent887bf450c01c511a3f6d048d3db78e8edfb21e8a (diff)
Merge branch 'master' into chapter7
Diffstat (limited to 'chapter6/bash.sh')
-rw-r--r--chapter6/bash.sh12
1 files changed, 7 insertions, 5 deletions
diff --git a/chapter6/bash.sh b/chapter6/bash.sh
index 83a7a89..ae7bb34 100644
--- a/chapter6/bash.sh
+++ b/chapter6/bash.sh
@@ -1,8 +1,10 @@
+#!/bin/bash
+
./configure --prefix=/usr \
- --build=$(support/config.guess) \
- --host=${LFS_TGT} \
+ --build="$(support/config.guess)" \
+ --host="${LFS_TGT}" \
--without-bash-malloc &&
make &&
-make DESTDIR=${LFS} -j1 install &&
-mv ${LFS}/usr/bin/bash ${LFS}/bin/bash &&
-ln -sv bash ${LFS}/bin/sh
+make DESTDIR="${LFS}" -j1 install &&
+mv "${LFS}"/usr/bin/bash "${LFS}"/bin/bash &&
+ln -sv bash "${LFS}"/bin/sh