diff options
author | alane <alane@FreeBSD.org> | 2002-11-02 00:24:19 +0800 |
---|---|---|
committer | alane <alane@FreeBSD.org> | 2002-11-02 00:24:19 +0800 |
commit | a1d5722c7886bf86b664b64b2e5a88bc33638406 (patch) | |
tree | 24101756ad3b644b593b1c483ff75414f776d050 /www/firefox36 | |
parent | 27bfc40eed6ed622609aac678ddd5249759ef70f (diff) | |
download | freebsd-ports-gnome-a1d5722c7886bf86b664b64b2e5a88bc33638406.tar.gz freebsd-ports-gnome-a1d5722c7886bf86b664b64b2e5a88bc33638406.tar.zst freebsd-ports-gnome-a1d5722c7886bf86b664b64b2e5a88bc33638406.zip |
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>
Diffstat (limited to 'www/firefox36')
-rw-r--r-- | www/firefox36/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/firefox36/Makefile b/www/firefox36/Makefile index 0e6139c45fc1..2afa69855b20 100644 --- a/www/firefox36/Makefile +++ b/www/firefox36/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 |