diff options
author | tv <tv@pkgsrc.org> | 2005-11-08 16:49:35 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2005-11-08 16:49:35 +0000 |
commit | 5fa918f2d18d4e2f47403ca8365e31cfc5067396 (patch) | |
tree | 9fd8cff334db4f9f566b109f68ba3f1bb811c6c2 /finance | |
parent | 16328ebf7fe273ae92ffd503a8fcc676a094b0ef (diff) | |
download | pkgsrc-5fa918f2d18d4e2f47403ca8365e31cfc5067396.tar.gz |
"rm -f" in case the file didn't exist to begin with.
Diffstat (limited to 'finance')
-rw-r--r-- | finance/xfinans/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/finance/xfinans/Makefile b/finance/xfinans/Makefile index 4a0c8253170..4aed74bfe3f 100644 --- a/finance/xfinans/Makefile +++ b/finance/xfinans/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2004/01/20 12:14:59 agc Exp $ +# $NetBSD: Makefile,v 1.8 2005/11/08 16:49:35 tv Exp $ # DISTNAME= xfinans-5.9 @@ -31,6 +31,6 @@ post-install: ${CP} ${WRKSRC}/../variables ${PREFIX}/share/examples/Xfinans ${CP} ${WRKSRC}/../categories ${PREFIX}/share/examples/Xfinans ${CP} ${WRKSRC}/../category_engine ${PREFIX}/share/examples/Xfinans - ${RM} ${PREFIX}/man/cat1/xfinans.0 + ${RM} -f ${PREFIX}/man/cat1/xfinans.0 .include "../../mk/bsd.pkg.mk" |