X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-dosfstools;h=72498ae1485b92fcb893b0dd5a99d3c6ca6b9684;hb=b5bfb2006502b57fab234345a2393fd04e6d55ad;hp=35a5bd474b321f88bd6ad28b2ca6d3b7dcbe74e8;hpb=589342af5c6b0235fc6194ae39f76bbcd12d683e;p=hvlinux.git diff --git a/stage3/cis-dosfstools b/stage3/cis-dosfstools index 35a5bd4..72498ae 100755 --- a/stage3/cis-dosfstools +++ b/stage3/cis-dosfstools @@ -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 $?