X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage2%2Fcis-ac-nobuild;h=bbe399857e48e2ff6efdb278c76fceeb13b08094;hb=d9a5344c1aa683d051d1a1d5e87f0bba317e299a;hp=443431d0f92fc4115d53680ccaea6cf2dbfe2cb0;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage2/cis-ac-nobuild b/stage2/cis-ac-nobuild index 443431d..bbe3998 100755 --- a/stage2/cis-ac-nobuild +++ b/stage2/cis-ac-nobuild @@ -1,4 +1,6 @@ -#!/bin/sh +#!/bin/bash +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} && +cd ${LFS_TMP}/${PACKAGE} ./configure \ --prefix=/usr \ --sysconfdir=/etc \ - ${CONFIGURE_OPTS} && -make && -make install && + ${CONFIGURE_OPTS} +make +make install ldconfig -# Return last error exit $?