diff options
author | ryoon <ryoon@pkgsrc.org> | 2013-06-01 21:42:54 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2013-06-01 21:42:54 +0000 |
commit | 526c4e762df886c79ffce625bea2fa288893c0e6 (patch) | |
tree | d93e9cdad1f9eb87fdf687522702bd8e2f3686d8 /www | |
parent | 6910f708a769310949df61e269ff7a895c70766c (diff) | |
download | pkgsrc-526c4e762df886c79ffce625bea2fa288893c0e6.tar.gz |
Fix install stage error, PR pkg/47734.
* Wrong, noexistrent file is removed and DragonFly's install
try to overwrite it and failed.
Diffstat (limited to 'www')
-rw-r--r-- | www/firefox17/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox17/Makefile b/www/firefox17/Makefile index 9d1f281bf8c..0c19413d11a 100644 --- a/www/firefox17/Makefile +++ b/www/firefox17/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2013/05/19 12:50:46 ryoon Exp $ +# $NetBSD: Makefile,v 1.10 2013/06/01 21:42:54 ryoon Exp $ .include "../../devel/xulrunner17/dist.mk" PKGNAME= firefox17-${MOZ_BRANCH} @@ -53,7 +53,7 @@ post-install: ${DESTDIR}${PREFIX}/share/applications/${MOZILLA}.desktop ${INSTALL_DATA} ${MOZILLA_ICON} \ ${DESTDIR}${PREFIX}/share/pixmaps/${MOZILLA}.png - rm -f ${DESTDIR}${PREFIX}/bin/firefox + rm -f ${DESTDIR}${PREFIX}/bin/firefox17 ${INSTALL_SCRIPT} ${WRKDIR}/firefox ${DESTDIR}${PREFIX}/bin/firefox17 BUILDLINK_API_DEPENDS.xulrunner17+= xulrunner17>=${MOZ_BRANCH} |