Use OWN_DIRS instead of MAKE_DIRS, and use the right operator +=.
Fixes PR pkg/22039 by Todd Vierling.
This commit is contained in:
parent
6f68cc07c8
commit
d7aa8a64f2
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue