diff options
Diffstat (limited to 'www/firefox-devel/pkg-install.in')
-rw-r--r-- | www/firefox-devel/pkg-install.in | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/www/firefox-devel/pkg-install.in b/www/firefox-devel/pkg-install.in index f25aa135197d..8d4bcf7e4073 100644 --- a/www/firefox-devel/pkg-install.in +++ b/www/firefox-devel/pkg-install.in @@ -1,6 +1,7 @@ #!/bin/sh # # $FreeBSD$ +# $MCom: ports/www/firefox-devel/pkg-install.in,v 1.6 2005/07/14 05:25:43 ahze Exp $ # # Date created: Mon Nov 29, 2003 # Whom: Thierry Thomas (<thierry@pompo.net>) @@ -14,11 +15,11 @@ PATH=/bin:/usr/bin:/usr/local/bin MOZDIR=%%MOZDIR%% REGXPCOM=${MOZDIR}/regxpcom -REGCHROME=${MOZDIR}/regchrome FIREFOX=${MOZDIR}/firefox-bin echo "===> Building Chrome's registry..." rm -rf ${MOZDIR}/chrome/overlayinfo +rm -f ${MOZDIR}/chrome/app-chrome.manifest rm -f ${MOZDIR}/chrome/*.rdf mkdir -p ${MOZDIR}/chrome/overlayinfo rm -f ${MOZDIR}/component.reg @@ -26,11 +27,6 @@ rm -rf ${MOZDIR}/extensions cd ${MOZDIR} || exit 1 ./run-mozilla.sh ${REGXPCOM} || true -./run-mozilla.sh ${REGCHROME} || true ./run-mozilla.sh ${FIREFOX} -register > /dev/null 2>&1 -if [ ! -d %%PREFIX%%/lib/browser_plugins ]; then - mkdir -p %%PREFIX%%/lib/browser_plugins -fi - exit 0 |