Ajout variable manquante HV_FONTS_DIR
[hvlinux.git] / stage3 / cis-windowmaker
index 2d3c8f1..ca29a5e 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,17 +9,16 @@ source ../functions
 source ../packages-list
 
 # Applying patches (if any)
-apply_patches ${1} &&
+apply_patches ${1}
 
-cd ${LFS_TMP}/${1} &&
-autoreconf &&
+cd ${LFS_TMP}/${1}
+autoreconf
 ./configure \
     --prefix=/usr \
     --sysconfdir=/etc \
-    --with-gnustepdir=/usr/share/GNUstep &&
-make &&
-make install &&
+    --with-gnustepdir=/usr/share/GNUstep
+make
+make install
 ldconfig
 
-# Return last error
 exit $?