Added -f to rm so install doesn't abort if the file doesn't exist.

Reviewed by:
Submitted by:
This commit is contained in:
Paul Richards 1994-08-20 06:28:37 +00:00
parent 13a2898404
commit c13a11ac11
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2144

View File

@ -13,6 +13,6 @@ LDDESTDIR+= -L${.CURDIR}/../cc_int
LDADD+= -lcc_int
afterinstall:
cd $(DESTDIR)$(BINDIR) ; rm gcc ; ln -s cc gcc
cd $(DESTDIR)$(BINDIR) ; rm -f gcc ; ln -s cc gcc
.include <bsd.prog.mk>