-Completed transition to new ipkg method (ipkg.def), but still problem with eglibc...
[hvlinux.git] / stage3 / cis-dosfstools
index 35a5bd4..72498ae 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,18 +11,12 @@ 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} &&
-make &&
-make PREFIX=/usr SBINDIR=/sbin install &&
+cd ${LFS_TMP}/${PACKAGE}
+make
+make PREFIX=/usr SBINDIR=/sbin install
 ldconfig
 
-# Return last error
 exit $?