diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-07-22 21:35:12 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-07-22 21:35:12 +0000 |
commit | d7aa8a64f21c4913b79bf5848a6592c85f883037 (patch) | |
tree | 458ba337e0f01641a4b0cfc4bca1aaa9f444ebd5 | |
parent | 6f68cc07c8907c0f5312916b6d931ac5371bcaa6 (diff) | |
download | pkgsrc-d7aa8a64f21c4913b79bf5848a6592c85f883037.tar.gz |
Use OWN_DIRS instead of MAKE_DIRS, and use the right operator +=.
Fixes PR pkg/22039 by Todd Vierling.
-rw-r--r-- | www/jakarta-tomcat/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/jakarta-tomcat/Makefile b/www/jakarta-tomcat/Makefile index 967f3869e1b..9dd7f76ae01 100644 --- a/www/jakarta-tomcat/Makefile +++ b/www/jakarta-tomcat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.38 2003/07/22 04:14:24 martti Exp $ +# $NetBSD: Makefile,v 1.39 2003/07/22 21:35:12 jmmv Exp $ DISTNAME= jakarta-tomcat-${TOMCAT_VERSION}-src PKGNAME= ${DISTNAME:S/-src$//} @@ -25,9 +25,9 @@ PKG_SYSCONFDIR.jakarta-tomcat= ${SAMPLECONFDIR} USE_PKGINSTALL= yes OWN_DIRS= ${PREFIX}/tomcat -MAKE_DIRS= ${PREFIX}/tomcat/conf -MAKE_DIRS= ${PREFIX}/tomcat/logs -MAKE_DIRS= ${PREFIX}/tomcat/webapps +OWN_DIRS+= ${PREFIX}/tomcat/conf +OWN_DIRS+= ${PREFIX}/tomcat/logs +OWN_DIRS+= ${PREFIX}/tomcat/webapps CFILES= server.xml web.xml tomcat-users.xml jni_server.xml CFILES+= tomcat.policy workers.properties |