X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage1%2Fcis-ac;h=bf6a8693f552fe63b08951bf0a54de85af458c8d;hb=6d3d50c17b24ef41f917f5776696eca810198092;hp=9d7a2837711e449bf15c4aee4ded143141965efb;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage1/cis-ac b/stage1/cis-ac index 9d7a283..bf6a869 100755 --- a/stage1/cis-ac +++ b/stage1/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. @@ -12,14 +14,8 @@ source ../functions source ../packages-list # Applying patches (if any) -apply_patches ${PACKAGE} && +apply_patches ${PACKAGE} -cd ${LFS_TMP}/${PACKAGE}-build && -../${PACKAGE}/configure \ - --prefix=/tools \ - ${CONFIGURE_OPTS} && -make && -make install +${SCRDIR}/cis-common ${PACKAGE} ${CONFIGURE_OPTS} -# Return last error exit $?