- Don't fail make clean when expected files are not present

PR:		ports/81828
Submitted by:	Loren M. Lang <lorenl@alzatex.com>
This commit is contained in:
Pav Lucistnik 2005-06-04 00:46:03 +00:00
parent 937b77e48d
commit 99cdd4b440
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=136775

View file

@ -40,7 +40,11 @@ do-install:
.endif
pre-clean:
@${CHMOD} -R +w ${WRKSRC}/src/xpm/.xvpics
@${CHMOD} -R +w ${WRKSRC}/.xvpics
@-if [ -e ${WRKSRC}/src/xpm/.xvpics ]; then \
${CHMOD} -R +w ${WRKSRC}/src/xpm/.xvpics 2>/dev/null; \
fi
@-if [ -e ${WRKSRC}/.xvpics ]; then \
${CHMOD} -R +w ${WRKSRC}/.xvpics 2>/dev/null; \
fi
.include <bsd.port.mk>