X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage2%2Fcis-texinfo;h=e96efd86553426ba1e70be60fd33d4ebe5e4d928;hb=a934432259aa5d5b687fe52731d6baf13c9675dc;hp=08601bde114ca08cbac1c4ea93dc37da0ba8507d;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage2/cis-texinfo b/stage2/cis-texinfo index 08601bd..e96efd8 100755 --- a/stage2/cis-texinfo +++ b/stage2/cis-texinfo @@ -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}-build && +cd ${LFS_TMP}/${1}-build ../${1}/configure \ - --prefix=/usr && -make -j ${MAKEJOBS} && -make install && + --prefix=/usr +make -j ${MAKEJOBS} +make install make TEXMF=/usr/share/texmf install-tex -# Return last error exit $?