aboutsummaryrefslogtreecommitdiffstats
path: root/chapter6/file.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chapter6/file.sh')
-rw-r--r--chapter6/file.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/chapter6/file.sh b/chapter6/file.sh
index 6d39e77..f73bc18 100644
--- a/chapter6/file.sh
+++ b/chapter6/file.sh
@@ -4,16 +4,16 @@ set -e
mkdir build
pushd build > /dev/null || exit 1
- ../configure --disable-bzlib \
- --disable-libseccomp \
- --disable-xzlib \
- --disable-zlib &&
- make &&
+../configure --disable-bzlib \
+ --disable-libseccomp \
+ --disable-xzlib \
+ --disable-zlib &&
+make &&
popd > /dev/null || exit 1
./configure --prefix=/usr \
- --host="${LFS_TGT}" \
- --build="$(./config.guess)" &&
+ --host="${LFS_TGT}" \
+ --build="$(./config.guess)" &&
make FILE_COMPILE="$(pwd)"/build/src/file &&
make DESTDIR="${LFS}" -j1 install &&