diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-06 05:37:18 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-06 05:37:18 +0800 |
commit | d6d967df425ba8c16392123819eebf4d4b5df2ae (patch) | |
tree | d223441bbe8f88ce9adfdd5db9a54420eacb81e9 /www/firefox/Makefile | |
parent | 63e215e65f140ed12ba29d91908b008c0530fbf9 (diff) | |
download | marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.gz marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.bz2 marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.lz marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.xz marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.zst marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.zip |
Move the '@dirrmtry share/pixamps' from mozilla/Makefile.common to the rest
ports' Makefile to correct the order of remove from files to directories. Bump
these ports, but not firefox since it already has a fix in its own Makefile. I
only replace it from @unexec[...] to @dirrmtry[...].
Before (incorrect):
==============================
# grep share/pixmaps /var/db/pkg/firefox-1.5.0.7_1,1/+CONTENTS
@unexec rmdir %D/share/pixmaps 2>/dev/null || true
share/pixmaps/firefox.xpm
==============================
After (correct):
==============================
# grep share/pixmaps /var/db/pkg/firefox-1.5.0.7_1,1/+CONTENTS
share/pixmaps/firefox.xpm
@unexec rmdir %D/share/pixmaps 2>/dev/null || true
==============================
Reported by: pointyhat
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7597 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/firefox/Makefile')
-rw-r--r-- | www/firefox/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 12cf31070..c85891cf2 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -3,7 +3,7 @@ # Whom: Alan Eldridge <alane@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/firefox/Makefile,v 1.34 2006/08/02 14:12:09 ahze Exp $ +# $MCom: ports/www/firefox/Makefile,v 1.35 2006/09/14 12:37:00 ahze Exp $ PORTNAME= firefox DISTVERSION= 1.5.0.7 @@ -75,7 +75,7 @@ pre-install: ${ECHO_CMD} 'share/applications/${MOZILLA}.desktop' >> ${PLIST} ${ECHO_CMD} "@unexec ${RMDIR} %D/share/applications 2>/dev/null || ${TRUE}" >> ${PLIST} ${ECHO_CMD} 'share/pixmaps/${FIREFOX_ICON}' >> ${PLIST} - ${ECHO_CMD} "@unexec ${RMDIR} %D/share/pixmaps 2>/dev/null || ${TRUE}" >> ${PLIST} + ${ECHO_CMD} "@dirrmtry share/pixmaps" >> ${PLIST} .if !defined(WITHOUT_NEWTAB) ${ECHO_CMD} >> ${SYSTEM_PREFS} ${ECHO_CMD} "// Open external links in new tab" >> ${SYSTEM_PREFS} |