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 | cb2a29ecb37367aa41cd4fc7a849cf4e8161918f (patch) | |
tree | 864658dc308077522537dee4cb0b6b2cea611621 /fonts | |
parent | 4e6052c74dc6778c37d64c39cf51af9b4d2a00cb (diff) | |
download | pkgsrc-cb2a29ecb37367aa41cd4fc7a849cf4e8161918f.tar.gz |
Use ${RM} -f to avoid failure if no files are found to be removed.
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/t1lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fonts/t1lib/Makefile b/fonts/t1lib/Makefile index a024aacbc50..11c47091d18 100644 --- a/fonts/t1lib/Makefile +++ b/fonts/t1lib/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2012/01/16 12:42:56 drochner Exp $ +# $NetBSD: Makefile,v 1.48 2012/02/02 09:34:32 hans Exp $ DISTNAME= t1lib-5.1.2 PKGREVISION= 6 @@ -45,7 +45,7 @@ post-extract: ${CP} ${FILESDIR}/t1lib.config.sample ${WRKSRC} pre-build: - ${FIND} ${WRKSRC} -name "*.orig" -print | ${XARGS} ${RM} + ${FIND} ${WRKSRC} -name "*.orig" -print | ${XARGS} ${RM} -f post-install: ${INSTALL_DATA_DIR} ${DESTDIR}${DATADIR} |