X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-agg;h=2cf3c93b7c436c29c8ee523a8fbfbbe8ec158478;hb=425bbc4fed1d0106b78befe474328fb9f5a15334;hp=6937f41e7352d335fff0d5a67a34ff24f4227364;hpb=589342af5c6b0235fc6194ae39f76bbcd12d683e;p=hvlinux.git diff --git a/stage3/cis-agg b/stage3/cis-agg index 6937f41..2cf3c93 100755 --- a/stage3/cis-agg +++ b/stage3/cis-agg @@ -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,19 +14,18 @@ shift CONFIGURE_OPTS=${*} # Applying patches (if any) -apply_patches ${PACKAGE} && +apply_patches ${PACKAGE} -cd ${LFS_TMP}/${PACKAGE} && -sh autogen.sh && +cd ${LFS_TMP}/${PACKAGE} +sh autogen.sh ./configure \ --prefix=/usr \ --disable-static \ --enable-ctrl \ --enable-gpc \ - ${CONFIGURE_OPTS} && -make && -make install && + ${CONFIGURE_OPTS} +make +make install ldconfig -# Return last error exit $?