diff options
author | Alan Eldridge <alane@FreeBSD.org> | 2002-11-01 16:24:19 +0000 |
---|---|---|
committer | Alan Eldridge <alane@FreeBSD.org> | 2002-11-01 16:24:19 +0000 |
commit | ae4b96c7ef149a277df965bc9e83d1f50004824b (patch) | |
tree | 139177e8bcf1010893d50682a0c2d8fa6d185ab2 /www/firefox | |
parent | Update(add new patches), and version bump. (diff) |
Fixed a stoopid mistake I made by not using -f with ${RM}. Caught, gutted,
And filleted by Douglas Berry <doug@cnd.dundas.on.ca>, who then served it
with a delightful lemon and basil butter, garnished with lark's vomit.
Thanks, Doug!
Submitted by: Douglas Barry <doug@cnd.dundas.on.ca>
Notes
Notes:
svn path=/head/; revision=69253
Diffstat (limited to 'www/firefox')
-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 0e6139c45fc1..2afa69855b20 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -79,10 +79,10 @@ post-patch: nsDrawingSurfaceGTK.cpp nsFontMetricsXft.h post-install: - ${RM} ${PREFIX}/bin/phoenix + ${RM} -f ${PREFIX}/bin/phoenix ${LN} -s ${LOCAL_PREFIX}/bin/phoenix \ ${PREFIX}/bin/phoenix - ${RM} ${PREFIX}/bin/phoenix-config + ${RM} -f ${PREFIX}/bin/phoenix-config ${LN} -s ${LOCAL_PREFIX}/bin/mozilla-config \ ${PREFIX}/bin/phoenix-config |