diff options
author | ryoon <ryoon> | 2013-06-01 21:42:54 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2013-06-01 21:42:54 +0000 |
commit | c5d0099a39535701c4db00e03a764da812c4505b (patch) | |
tree | d93e9cdad1f9eb87fdf687522702bd8e2f3686d8 /www/firefox17 | |
parent | e669111c43848504256ccb3513b50c6d42fe5ddb (diff) | |
download | pkgsrc-c5d0099a39535701c4db00e03a764da812c4505b.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/firefox17')
-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} |