WindowMaker installe OK
[hvlinux.git] / stage3 / cis-docbook-utils
index da0a79f..46636ec 100755 (executable)
@@ -1,4 +1,6 @@
 #!/bin/sh
+set -o errexit
+
 # First argument of this script is the package name
 
 # Reading system configuration informations, functions and package versions.
@@ -7,18 +9,17 @@ source ../functions
 source ../packages-list
 
 # Applying patches (if any)
-apply_patches ${1} &&
+apply_patches ${1}
 
-cd ${LFS_TMP}/${1} &&
-sed -i 's:/html::' doc/HTML/Makefile.in &&
+cd ${LFS_TMP}/${1}
+sed -i 's:/html::' doc/HTML/Makefile.in
 ./configure \
-    --prefix=/usr &&
-make &&
-make install &&
+    --prefix=/usr
+make
+make install
 
 for doctype in html ps dvi man pdf rtf tex texi txt; do
-    ln -sf docbook2$doctype /usr/bin/db2$doctype || exit 1
+    ln -sf docbook2$doctype /usr/bin/db2$doctype
 done
 
-# Return last error
 exit $?