Ajout variable manquante HV_FONTS_DIR
[hvlinux.git] / stage3 / cis-agg
index 6937f41..2cf3c93 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,19 +14,18 @@ shift
 CONFIGURE_OPTS=${*}
 
 # Applying patches (if any)
-apply_patches ${PACKAGE} &&
+apply_patches ${PACKAGE}
 
-cd ${LFS_TMP}/${PACKAGE} &&
-sh autogen.sh &&
+cd ${LFS_TMP}/${PACKAGE}
+sh autogen.sh
 ./configure \
     --prefix=/usr \
     --disable-static \
     --enable-ctrl \
     --enable-gpc \
-    ${CONFIGURE_OPTS} &&
-make &&
-make install &&
+    ${CONFIGURE_OPTS}
+make
+make install
 ldconfig
 
-# Return last error
 exit $?