X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-boost;h=65cf30f3f9aa55190d6dfa269fcb834fcf2e6811;hb=0028eaa73ae0c3bd1dbf90c4bd508ae705bc386f;hp=87069d7ef688645b07171566fcd32ba3529f426c;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage3/cis-boost b/stage3/cis-boost index 87069d7..65cf30f 100755 --- a/stage3/cis-boost +++ b/stage3/cis-boost @@ -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 $?