From d6de6e3bc5bc4d5f3c8799df33d876116bddef14 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Wed, 14 Apr 2021 16:37:15 -0500 Subject: Use AND lists and remove set -e --- chapter8/dejagnu.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'chapter8/dejagnu.sh') diff --git a/chapter8/dejagnu.sh b/chapter8/dejagnu.sh index 5d66681..273ab0f 100644 --- a/chapter8/dejagnu.sh +++ b/chapter8/dejagnu.sh @@ -1,10 +1,9 @@ #!/bin/bash -set -e -./configure --prefix=/usr -makeinfo --html --no-split -o doc/dejagnu.html doc/dejagnu.texi -makeinfo --plaintext -o doc/dejagnu.txt doc/dejagnu.texi +./configure --prefix=/usr && +makeinfo --html --no-split -o doc/dejagnu.html doc/dejagnu.texi && +makeinfo --plaintext -o doc/dejagnu.txt doc/dejagnu.texi && -make -j1 install -install -v -dm755 /usr/share/doc/dejagnu-"${VERSION}" +make -j1 install && +install -v -dm755 /usr/share/doc/dejagnu-"${VERSION}" && install -v -m644 doc/dejagnu.{html,txt} /usr/share/doc/dejagnu-"${VERSION}" -- cgit v1.2.3-54-g00ecf