aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-05-04 18:45:10 +0000
committerWilliam Harrington <kb0iic@berzerkula.org>2021-05-04 18:46:53 +0000
commitf2a5fa0cb792ce412cc74d6d156f5b90157ee0ab (patch)
tree1def84ec3ac1891005e29e137ee907d84c0ca58a
parentaaa537fb9f002d570c8d201368117341808bf87e (diff)
Adjust indention. Evil tabs.
-rw-r--r--chapter6/file.sh14
-rw-r--r--chapter6/gzip.sh2
-rw-r--r--chapter8/isl.sh4
-rw-r--r--chapter8/ncurses.sh4
-rw-r--r--chapter8/readline.sh2
5 files changed, 13 insertions, 13 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 &&
diff --git a/chapter6/gzip.sh b/chapter6/gzip.sh
index d8a45c7..e3ce2e9 100644
--- a/chapter6/gzip.sh
+++ b/chapter6/gzip.sh
@@ -2,7 +2,7 @@
set -e
./configure --prefix=/usr \
- --host="${LFS_TGT}" &&
+ --host="${LFS_TGT}" &&
make &&
make DESTDIR="${LFS}" -j1 install &&
mv -v "${LFS}"/usr/bin/gzip "${LFS}"/bin
diff --git a/chapter8/isl.sh b/chapter8/isl.sh
index b649020..87ee2fb 100644
--- a/chapter8/isl.sh
+++ b/chapter8/isl.sh
@@ -2,8 +2,8 @@
set -e
./configure --prefix=/usr \
- --disable-static \
- --docdir=/usr/share/doc/isl-"${VERSION}" &&
+ --disable-static \
+ --docdir=/usr/share/doc/isl-"${VERSION}" &&
make &&
make html &&
diff --git a/chapter8/ncurses.sh b/chapter8/ncurses.sh
index 32eaf02..94d1b3c 100644
--- a/chapter8/ncurses.sh
+++ b/chapter8/ncurses.sh
@@ -8,8 +8,8 @@ set -e
--without-normal \
--enable-pc-files \
--enable-widec \
- --with-termlib \
- --disable-tic-depends &&
+ --with-termlib \
+ --disable-tic-depends &&
make &&
make -j1 install &&
diff --git a/chapter8/readline.sh b/chapter8/readline.sh
index 4b2569e..b35e33b 100644
--- a/chapter8/readline.sh
+++ b/chapter8/readline.sh
@@ -7,7 +7,7 @@ sed -i '/{OLDSUFF}/c:' support/shlib-install &&
./configure --prefix=/usr \
--disable-static \
--with-curses \
- --disable-bracketed-paste-default \
+ --disable-bracketed-paste-default \
--docdir=/usr/share/doc/readline-"${VERSION}"
make SHLIB_LIBS="-lncursesw" &&