X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage2%2Fcis-ac;h=93f3e8743141334f9a6d685ea275f8b8dca5c062;hb=46c7c4e8f98985e982995b4e4f4967abbd72f9a3;hp=7dd8dba8ee517d0fa028010d045ec73d3c333b95;hpb=b2f91df3e7c1d1ca93ced97b5001e3134243666b;p=hvlinux.git diff --git a/stage2/cis-ac b/stage2/cis-ac index 7dd8dba..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. @@ -12,16 +14,15 @@ shift CONFIGURE_OPTS=${*} # 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 $?