X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-t1lib;h=c4efab70d0bfedda8fe0df8755028173d15b466a;hb=8c1ceecd26d41af612337eb87f51fa1d353d6c8a;hp=565e4c62b8e7a40fe93591580c686c7a2b78e186;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage3/cis-t1lib b/stage3/cis-t1lib index 565e4c6..c4efab7 100755 --- a/stage3/cis-t1lib +++ b/stage3/cis-t1lib @@ -1,4 +1,6 @@ #!/bin/sh +set -o errexit + # First argument of this script is the package name # Reading system configuration informations, functions and package versions. @@ -7,14 +9,13 @@ source ../functions source ../packages-list # Applying patches (if any) -apply_patches ${1} && +apply_patches ${1} -cd ${LFS_TMP}/${1} && +cd ${LFS_TMP}/${1} ./configure \ - --prefix=/usr && -make without_doc && -make install && + --prefix=/usr +make without_doc +make install ldconfig -# Return last error exit $?