From b46b1d4308eb445dd0fd0162eb19169b9ca4af88 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 4 May 2021 14:29:22 +0000 Subject: Remove -e and fix some indentions. --- chapter7/backup.sh | 1 - chapter7/bison.sh | 1 - chapter7/cleanup.sh | 1 - chapter7/gettext.sh | 1 - chapter7/libstdc++.sh | 1 - chapter7/perl.sh | 1 - chapter7/python.sh | 1 - chapter7/texinfo.sh | 1 - chapter7/util-linux.sh | 1 - 9 files changed, 9 deletions(-) (limited to 'chapter7') diff --git a/chapter7/backup.sh b/chapter7/backup.sh index b903897..ab3d894 100644 --- a/chapter7/backup.sh +++ b/chapter7/backup.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e file="${LFS_VER}-ch7-backup.tar.xz" directories=(bin dev etc lib lib64 proc run sbin sys tools usr var) diff --git a/chapter7/bison.sh b/chapter7/bison.sh index 9de734e..2385d22 100644 --- a/chapter7/bison.sh +++ b/chapter7/bison.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ./configure --prefix=/usr --docdir=/usr/share/doc/bison-"${VERSION}" && make && diff --git a/chapter7/cleanup.sh b/chapter7/cleanup.sh index 3e4dfa3..1652a7a 100644 --- a/chapter7/cleanup.sh +++ b/chapter7/cleanup.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e if [ -f "${LFS}/sources/chapter7/cleanup" ]; then printf "%b" " ${IGRN}Cleanup already performed${RST}\n" diff --git a/chapter7/gettext.sh b/chapter7/gettext.sh index 0e1771d..696cf25 100644 --- a/chapter7/gettext.sh +++ b/chapter7/gettext.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ./configure --disable-shared && make && diff --git a/chapter7/libstdc++.sh b/chapter7/libstdc++.sh index 1a0b5ee..de3a6b4 100644 --- a/chapter7/libstdc++.sh +++ b/chapter7/libstdc++.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ln -s gthr-posix.h libgcc/gthr-default.h && mkdir build diff --git a/chapter7/perl.sh b/chapter7/perl.sh index 627e3e5..970e17c 100644 --- a/chapter7/perl.sh +++ b/chapter7/perl.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e MAJMIN="$(cut -d\. -f1,2 <<< "${VERSION}")" diff --git a/chapter7/python.sh b/chapter7/python.sh index 428beaa..daf1677 100644 --- a/chapter7/python.sh +++ b/chapter7/python.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ./configure --prefix=/usr \ --enable-shared \ diff --git a/chapter7/texinfo.sh b/chapter7/texinfo.sh index b3bba9e..1935156 100644 --- a/chapter7/texinfo.sh +++ b/chapter7/texinfo.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e ./configure --prefix=/usr && make && diff --git a/chapter7/util-linux.sh b/chapter7/util-linux.sh index e0241fa..7a00c8c 100644 --- a/chapter7/util-linux.sh +++ b/chapter7/util-linux.sh @@ -1,5 +1,4 @@ #!/bin/bash -set -e mkdir -p /var/lib/hwclock && ./configure ADJTIME_PATH=/var/lib/hwclock/adjtime \ -- cgit v1.2.3-54-g00ecf