diff options
author | schwarz <schwarz@pkgsrc.org> | 2006-04-23 14:06:08 +0000 |
---|---|---|
committer | schwarz <schwarz@pkgsrc.org> | 2006-04-23 14:06:08 +0000 |
commit | c05527f3215cbc4f5a0cc6fa70d8c4a4391cd4d7 (patch) | |
tree | 614b335d60f51ec2463001ffc298795d90d3296a /www/lynx | |
parent | 663131caff0332f036d84523b5f08cd63eeb82bb (diff) | |
download | pkgsrc-c05527f3215cbc4f5a0cc6fa70d8c4a4391cd4d7.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" |