X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=stage2%2Fcis-ac;h=93f3e8743141334f9a6d685ea275f8b8dca5c062;hb=46c7c4e8f98985e982995b4e4f4967abbd72f9a3;hp=eda5760675d43c65c7a6d37cf5c131816ded2d48;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage2/cis-ac b/stage2/cis-ac index eda5760..93f3e87 100755 --- a/stage2/cis-ac +++ b/stage2/cis-ac @@ -1,4 +1,6 @@ #!/bin/sh +set -o errexit + # First argument of this script is the package name. # Remaining arguments are additional configure options. @@ -11,22 +13,16 @@ PACKAGE=${1} shift CONFIGURE_OPTS=${*} -# 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}-build && +cd ${LFS_TMP}/${PACKAGE}-build ../${PACKAGE}/configure \ --prefix=/usr \ --sysconfdir=/etc \ - ${CONFIGURE_OPTS} && -make && -make install && + ${CONFIGURE_OPTS} +make +make install ldconfig -# Return last error exit $?