diff options
author | schwarz <schwarz> | 2006-04-23 14:06:08 +0000 |
---|---|---|
committer | schwarz <schwarz> | 2006-04-23 14:06:08 +0000 |
commit | 03ea9d728f93949306dd418250eda0dc16b5d99c (patch) | |
tree | 614b335d60f51ec2463001ffc298795d90d3296a /www/lynx | |
parent | 1003a4dfb4d083ffc0bd8d28484e2e9f90f5e0cf (diff) | |
download | pkgsrc-03ea9d728f93949306dd418250eda0dc16b5d99c.tar.gz |
make sure that attempt to remove file does not lead to a halt even when the
file does not exist
Diffstat (limited to 'www/lynx')
-rw-r--r-- | www/lynx/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/lynx/Makefile b/www/lynx/Makefile index 0db1bf83074..9116b7c7c24 100644 --- a/www/lynx/Makefile +++ b/www/lynx/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.88 2006/04/13 18:23:39 jlam Exp $ +# $NetBSD: Makefile,v 1.89 2006/04/23 14:06:08 schwarz Exp $ # # NOTE: Please do not enable the lynxcgi feature unless it is lynx @@ -77,6 +77,6 @@ post-install: ${FIND} ${PREFIX}/share/lynx -type d -print | ${XARGS} ${CHMOD} ${PKGDIRMODE} # gets created when applying 2.8.5.2 patch -- remove on # patchless update - ${RM} ${PREFIX}/share/lynx/lynx_doc/CHANGES.orig_dist + ${RM} -f ${PREFIX}/share/lynx/lynx_doc/CHANGES.orig_dist .include "../../mk/bsd.pkg.mk" |