diff options
author | abs <abs> | 2005-04-01 13:29:38 +0000 |
---|---|---|
committer | abs <abs> | 2005-04-01 13:29:38 +0000 |
commit | ed90dacc6cb423dfbeaed968bdb2d1176a35853e (patch) | |
tree | 504dc7eb5f692575f103574559c1973e7426c333 | |
parent | cb24e610d2a223ed128be0fe37629fa68de05b6f (diff) | |
download | pkgsrc-ed90dacc6cb423dfbeaed968bdb2d1176a35853e.tar.gz |
use ${RM} rather than rm
-rw-r--r-- | www/jakarta-tomcat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/jakarta-tomcat/Makefile b/www/jakarta-tomcat/Makefile index c5231f1dcc0..c8c8e7af936 100644 --- a/www/jakarta-tomcat/Makefile +++ b/www/jakarta-tomcat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.51 2005/01/21 12:24:39 abs Exp $ +# $NetBSD: Makefile,v 1.52 2005/04/01 13:29:38 abs Exp $ DISTNAME= jakarta-tomcat-${TOMCAT_VERSION} CATEGORIES= www java @@ -66,7 +66,7 @@ do-install: | ${XARGS} ${CHMOD} a+rx; \ ${FIND} ${TOMCAT_LIB} -type d -print | ${XARGS} ${CHMOD} a+rx; \ ${FIND} ${TOMCAT_LIB} -type f -name \*.bat -print | \ - ${XARGS} rm -f) + ${XARGS} ${RM} -f) .include "../../mk/java-vm.mk" .include "../../mk/bsd.pkg.mk" |