X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-windowmaker;h=ca29a5ec873d001ff6407c74d2701664b8b859d6;hb=5b913b7b528bb69a0c90583b8776d6d26b9cb189;hp=2d3c8f1e68dcd42d0224785058736d0e2cc7027e;hpb=16cc35ba4890382ee9368a176e4f5a7fa773b7a6;p=hvlinux.git diff --git a/stage3/cis-windowmaker b/stage3/cis-windowmaker index 2d3c8f1..ca29a5e 100755 --- a/stage3/cis-windowmaker +++ b/stage3/cis-windowmaker @@ -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,17 +9,16 @@ source ../functions source ../packages-list # Applying patches (if any) -apply_patches ${1} && +apply_patches ${1} -cd ${LFS_TMP}/${1} && -autoreconf && +cd ${LFS_TMP}/${1} +autoreconf ./configure \ --prefix=/usr \ --sysconfdir=/etc \ - --with-gnustepdir=/usr/share/GNUstep && -make && -make install && + --with-gnustepdir=/usr/share/GNUstep +make +make install ldconfig -# Return last error exit $?