X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-ckermit;h=5bd062b73007566515c98b9101b0091f08904049;hb=fb687a8c2dc6ac58f8be02dda9b3f04cc9d10f28;hp=2ef9f1bb433e2507c46dceabc8c5410fed69fab9;hpb=b2f91df3e7c1d1ca93ced97b5001e3134243666b;p=hvlinux.git diff --git a/stage3/cis-ckermit b/stage3/cis-ckermit index 2ef9f1b..5bd062b 100755 --- a/stage3/cis-ckermit +++ b/stage3/cis-ckermit @@ -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,11 +14,11 @@ shift CONFIGURE_OPTS=${*} # Applying patches (if any) -apply_patches ${PACKAGE} && +apply_patches ${PACKAGE} -cd ${LFS_TMP}/${PACKAGE} && -make linux && -make prefix=/usr install && +cd ${LFS_TMP}/${PACKAGE} +make linux +make prefix=/usr install cat > /etc/skel/.kermrc << "EOF" set line /dev/ttyUSB0 @@ -33,5 +35,4 @@ set window 5 xecho \27[32m\27[40m EOF -# Return last error exit $?