Started work on stage5
[hvlinux.git] / stage3 / cis-xsane
index 1abeda3..2616f35 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} &&
+cd ${LFS_TMP}/${1}
 ./configure \
-    --prefix=/usr &&
-make &&
-make install &&
-ldconfig &&
+    --prefix=/usr
+make
+make install
+ldconfig
 
 # Adding link for GIMP plugin (Base GIMP version hardcoded for now)
 ln -v -sf /usr/bin/xsane /usr/lib/gimp/2.0/plug-ins/
 
-# Return last error
 exit $?