Ajout variable manquante HV_FONTS_DIR
[hvlinux.git] / stage3 / cis-t1lib
index 565e4c6..c4efab7 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,14 +9,13 @@ source ../functions
 source ../packages-list
 
 # Applying patches (if any)
-apply_patches ${1} &&
+apply_patches ${1}
 
-cd ${LFS_TMP}/${1} &&
+cd ${LFS_TMP}/${1}
 ./configure \
-    --prefix=/usr &&
-make without_doc &&
-make install &&
+    --prefix=/usr
+make without_doc
+make install
 ldconfig
 
-# Return last error
 exit $?