Ajout variable manquante HV_FONTS_DIR
[hvlinux.git] / stage3 / cis-ckermit
index 2ef9f1b..5bd062b 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.
 
@@ -12,11 +14,11 @@ shift
 CONFIGURE_OPTS=${*}
 
 # Applying patches (if any)
-apply_patches ${PACKAGE} &&
+apply_patches ${PACKAGE}
 
-cd ${LFS_TMP}/${PACKAGE} &&
-make linux &&
-make prefix=/usr install &&
+cd ${LFS_TMP}/${PACKAGE}
+make linux
+make prefix=/usr install
 
 cat > /etc/skel/.kermrc << "EOF"
 set line /dev/ttyUSB0
@@ -33,5 +35,4 @@ set window 5
 xecho \27[32m\27[40m
 EOF
 
-# Return last error
 exit $?