diff options
author | wiz <wiz@pkgsrc.org> | 2004-09-17 19:25:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2004-09-17 19:25:03 +0000 |
commit | a6439d1e32af1c4b19993a84c8374a07d90febce (patch) | |
tree | 2022012598b366a7adba58628b6b54a89730fc38 /textproc | |
parent | 00d9761a9eed8ee1e246cbcc48e3e4e56e81fbb3 (diff) | |
download | pkgsrc-a6439d1e32af1c4b19993a84c8374a07d90febce.tar.gz |
Use rm -rf instead of -Rf to better support Irix. From Georg Schwarz
in PR 26985.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/dsssl-docbook-modular/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/textproc/dsssl-docbook-modular/Makefile b/textproc/dsssl-docbook-modular/Makefile index 7fd490625b6..e0826457ab3 100644 --- a/textproc/dsssl-docbook-modular/Makefile +++ b/textproc/dsssl-docbook-modular/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2004/06/06 13:04:24 grant Exp $ +# $NetBSD: Makefile,v 1.23 2004/09/17 19:25:03 wiz Exp $ # FreeBSD Id: Makefile,v 1.17 1999/04/24 09:25:32 kuriyama Exp DISTNAME= docbook-dsssl-1.78 @@ -22,7 +22,7 @@ INSTDIR= ${PREFIX}/share/sgml/docbook/dsssl/modular SGML_CATALOGS= ${INSTDIR}/catalog do-build: - @${RM} -Rf ${WRKSRC}/docsrc + @${RM} -rf ${WRKSRC}/docsrc pre-install: ${INSTALL_DATA_DIR} ${INSTDIR} |