diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-12-04 09:47:27 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-12-04 09:47:27 +0000 |
commit | 403955523cb287018d5a39d14b824adf826c7a52 (patch) | |
tree | 24790a6dd021d66894f68317de6c08baa7e9ff40 /www/firefox-devel | |
parent | eba98ce530fc6892eb28e658358202fa1e021acd (diff) | |
download | ports-403955523cb287018d5a39d14b824adf826c7a52.tar.gz ports-403955523cb287018d5a39d14b824adf826c7a52.zip |
Notes
Diffstat (limited to 'www/firefox-devel')
-rw-r--r-- | www/firefox-devel/Makefile | 1 | ||||
-rw-r--r-- | www/firefox-devel/pkg-install.in | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/www/firefox-devel/Makefile b/www/firefox-devel/Makefile index 4eb85744734b..83de1a8e522c 100644 --- a/www/firefox-devel/Makefile +++ b/www/firefox-devel/Makefile @@ -126,6 +126,7 @@ post-extract:: post-patch: @${SED} -e 's|%%MOZDIR%%|${PREFIX}/lib/${FIREFOX}|g ; \ + s|%%PREFIX%%|${PREFIX}|g ; \ s|%%X11BASE%%|${X11BASE}|g' \ < ${MASTERDIR}/pkg-install.in > ${PKGINSTALL} @${SED} -e 's|%%MOZDIR%%|${PREFIX}/lib/${FIREFOX}|g' \ diff --git a/www/firefox-devel/pkg-install.in b/www/firefox-devel/pkg-install.in index 8f8dbd0c6cc3..f25aa135197d 100644 --- a/www/firefox-devel/pkg-install.in +++ b/www/firefox-devel/pkg-install.in @@ -29,4 +29,8 @@ cd ${MOZDIR} || exit 1 ./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 |