diff options
author | hans <hans@pkgsrc.org> | 2012-02-02 09:26:17 +0000 |
---|---|---|
committer | hans <hans@pkgsrc.org> | 2012-02-02 09:26:17 +0000 |
commit | 292499a235de6979aaff59f9a9196fbfb06bacc9 (patch) | |
tree | 864658dc308077522537dee4cb0b6b2cea611621 /editors/TeXmacs/Makefile | |
parent | b2bf3641c21677314868708b6bbd134fdd36bd6c (diff) | |
download | pkgsrc-292499a235de6979aaff59f9a9196fbfb06bacc9.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'editors/TeXmacs/Makefile')
-rw-r--r-- | editors/TeXmacs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/TeXmacs/Makefile b/editors/TeXmacs/Makefile index 7fa30d470ea..95550caf999 100644 --- a/editors/TeXmacs/Makefile +++ b/editors/TeXmacs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.92 2011/11/01 06:01:05 sbd Exp $ +# $NetBSD: Makefile,v 1.93 2012/02/02 09:31:41 hans Exp $ DISTNAME= TeXmacs-1.0.6.15-src PKGNAME= ${DISTNAME:S/-src//} @@ -46,7 +46,7 @@ REPLACE_SH+= plugins/xypic/bin/tm_xypic pre-install: ${RM} -f ${WRKSRC}/TeXmacs/doc/devel/format/.log - ${FIND} ${WRKSRC}/plugins/ -name '*.orig' | ${XARGS} ${RM} + ${FIND} ${WRKSRC}/plugins/ -name '*.orig' | ${XARGS} ${RM} -f # just a helper script, not worth a full perl dependency CHECK_INTERPRETER_SKIP= libexec/TeXmacs/bin/bbox_add.pl |