WindowMaker installe OK
[hvlinux.git] / stage3 / cis-boost
index 87069d7..65cf30f 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.
 
@@ -9,20 +11,14 @@ source ../packages-list
 
 PACKAGE=${1}
 
-# Reading system configuration informations, functions and package versions.
-source ../sysinfos
-source ../functions
-source ../packages-list
-
 # Applying patches (if any)
-apply_patches ${PACKAGE} &&
+apply_patches ${PACKAGE}
 
-cd ${LFS_TMP}/${PACKAGE} &&
+cd ${LFS_TMP}/${PACKAGE}
 ./configure \
-    --prefix=/usr &&
-make &&
-make install &&
+    --prefix=/usr
+make
+make install
 ldconfig
 
-# Return last error
 exit $?