diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-05-04 18:45:10 +0000 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-05-04 18:49:53 +0000 |
commit | 282917ba2f7d33abb8da3c047be9093686b6d5ac (patch) | |
tree | 20447961bdb3a7c346799a5b36dc9983750f8891 | |
parent | b46b1d4308eb445dd0fd0162eb19169b9ca4af88 (diff) |
Adjust indention. Evil tabs.
-rw-r--r-- | chapter6/file.sh | 14 | ||||
-rw-r--r-- | chapter6/gzip.sh | 2 | ||||
-rw-r--r-- | chapter8/isl.sh | 4 | ||||
-rw-r--r-- | chapter8/ncurses.sh | 4 | ||||
-rw-r--r-- | chapter8/readline.sh | 2 |
5 files changed, 13 insertions, 13 deletions
diff --git a/chapter6/file.sh b/chapter6/file.sh index bd51747..7c30a89 100644 --- a/chapter6/file.sh +++ b/chapter6/file.sh @@ -3,16 +3,16 @@ 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 f894df6..e466da0 100644 --- a/chapter6/gzip.sh +++ b/chapter6/gzip.sh @@ -1,7 +1,7 @@ #!/bin/bash ./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 2ff6dba..d6f6e3d 100644 --- a/chapter8/isl.sh +++ b/chapter8/isl.sh @@ -1,8 +1,8 @@ #!/bin/bash ./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 d42cf49..10b76d4 100644 --- a/chapter8/ncurses.sh +++ b/chapter8/ncurses.sh @@ -7,8 +7,8 @@ --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 80c9709..97e4ee4 100644 --- a/chapter8/readline.sh +++ b/chapter8/readline.sh @@ -8,7 +8,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" && |