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 | 98f7a8bfaf004a7bb8718cf17447c45d74aabd26 (patch) | |
tree | 614b335d60f51ec2463001ffc298795d90d3296a /www/lynx | |
parent | 6c94de00e2f113cd18917e1493c7b17622d8514d (diff) | |
download | pkgsrc-98f7a8bfaf004a7bb8718cf17447c45d74aabd26.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" |