X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage3%2Fcis-gnash;h=d80ac3757b5dd62ab44e67e0bd7aaae775c75ea5;hb=b5bfb2006502b57fab234345a2393fd04e6d55ad;hp=5be6d7094fcbd80e87c9a15d9eff5cbd05b90e4f;hpb=589342af5c6b0235fc6194ae39f76bbcd12d683e;p=hvlinux.git diff --git a/stage3/cis-gnash b/stage3/cis-gnash index 5be6d70..d80ac37 100755 --- a/stage3/cis-gnash +++ b/stage3/cis-gnash @@ -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 $?