Ajout variable manquante HV_FONTS_DIR
[hvlinux.git] / stage3 / cis-splix
index bcddfab..e125018 100755 (executable)
@@ -1,4 +1,6 @@
 #!/bin/sh
+set -o errexit
+
 # First argument of this script is the package name.
 # Remaining arguments are additional configure options.
 
@@ -17,12 +19,11 @@ source ../functions
 source ../packages-list
 
 # Applying patches (if any)
-apply_patches ${PACKAGE} &&
+apply_patches ${PACKAGE}
 
-cd ${LFS_TMP}/${PACKAGE} &&
-make DISABLE_JBIG=1 &&
-make install &&
+cd ${LFS_TMP}/${PACKAGE}
+make DISABLE_JBIG=1
+make install
 ldconfig
 
-# Return last error
 exit $?