aboutsummaryrefslogtreecommitdiffstats
path: root/chapter6/make.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/make.sh
parent9d68d5da4115353816ab4f6b1c7a4f5db43576f9 (diff)
parent887bf450c01c511a3f6d048d3db78e8edfb21e8a (diff)
Merge branch 'master' into chapter7
Diffstat (limited to 'chapter6/make.sh')
-rw-r--r--chapter6/make.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/chapter6/make.sh b/chapter6/make.sh
index 69c7e72..4de06b6 100644
--- a/chapter6/make.sh
+++ b/chapter6/make.sh
@@ -1,6 +1,8 @@
+#!/bin/bash
+
./configure --prefix=/usr \
--without-guile \
- --host=${LFS_TGT} \
- --build=$(build-aux/config.guess)
+ --host="${LFS_TGT}" \
+ --build="$(build-aux/config.guess)" &&
make &&
-make DESTDIR=${LFS} -j1 install
+make DESTDIR="${LFS}" -j1 install