Ajout variable manquante HV_FONTS_DIR
[hvlinux.git] / stage3 / cis-gnash
index 5be6d70..d80ac37 100755 (executable)
@@ -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,19 +14,18 @@ shift
 CONFIGURE_OPTS=${*}
 
 # Applying patches (if any)
-apply_patches ${PACKAGE} &&
+apply_patches ${PACKAGE}
 
-cd ${LFS_TMP}/${PACKAGE}-build &&
+cd ${LFS_TMP}/${PACKAGE}-build
 ../${PACKAGE}/configure \
     --prefix=/usr \
     --sysconfdir=/etc \
     --enable-gui=gtk \
-    ${CONFIGURE_OPTS} &&
-make &&
-make install &&
-ldconfig &&
+    ${CONFIGURE_OPTS}
+make
+make install
+ldconfig
 
 install -m 755 plugin/.libs/libgnashplugin.so /usr/lib/firefox/plugins
 
-# Return last error
 exit $?