MErge en cours x86_64 -> trunk
[hvlinux.git] / stage2 / cis-reiserfsprogs
index 464d060..c330a8f 100755 (executable)
@@ -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} &&
+cd ${LFS_TMP}/${1}
 ./configure \
     --prefix=/usr \
-    --sbindir=/sbin &&
+    --sbindir=/sbin
 # Doesn't seem to use CFLAGS...
-make -j ${MAKEJOBS} &&
-make install &&
-ln -sf reiserfsck /sbin/fsck.reiserfs &&
+make -j ${MAKEJOBS}
+make install
+ln -sf reiserfsck /sbin/fsck.reiserfs
 ln -sf mkreiserfs /sbin/mkfs.reiserfs
 
-# Return last error
 exit $?