X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-xvidcore;h=841455e2477de40974bc42ddbbd4ba98220fa1df;hb=8c1ceecd26d41af612337eb87f51fa1d353d6c8a;hp=b5205de1a52c9eecf96adefb9710948314cc555a;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage3/cis-xvidcore b/stage3/cis-xvidcore index b5205de..841455e 100755 --- a/stage3/cis-xvidcore +++ b/stage3/cis-xvidcore @@ -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,16 +9,15 @@ source ../functions source ../packages-list # Applying patches (if any) -apply_patches ${1} && +apply_patches ${1} -cd ${LFS_TMP}/${1}/build/generic && +cd ${LFS_TMP}/${1}/build/generic ./configure \ - --prefix=/usr && -make && -make install && -ln -sf libxvidcore.so.4.0 /usr/lib/libxvidcore.so.4 && -ln -sf libxvidcore.so.4 /usr/lib/libxvidcore.so && + --prefix=/usr +make +make install +ln -sf libxvidcore.so.4.0 /usr/lib/libxvidcore.so.4 +ln -sf libxvidcore.so.4 /usr/lib/libxvidcore.so ldconfig -# Return last error exit $?