-Removed all ipkg_* functions and replaced them with a single ipkg function accepting...
[hvlinux.git] / stage3 / cis-xvidcore
index b5205de..841455e 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,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 $?