diff options
author | hq <hq@FreeBSD.org> | 2005-09-06 11:23:45 +0800 |
---|---|---|
committer | hq <hq@FreeBSD.org> | 2005-09-06 11:23:45 +0800 |
commit | 592907db39bfcff22cee0e2e81ab80f634f434fc (patch) | |
tree | 0df719dcfb8916c0b7ad25ca51d79334114dc9f4 /www/tomcat6 | |
parent | 5d8bb895c90f2328e4e2780a407fe266db69637f (diff) | |
download | freebsd-ports-gnome-592907db39bfcff22cee0e2e81ab80f634f434fc.tar.gz freebsd-ports-gnome-592907db39bfcff22cee0e2e81ab80f634f434fc.tar.zst freebsd-ports-gnome-592907db39bfcff22cee0e2e81ab80f634f434fc.zip |
Install ${PREFIX}/bin/tomcat55ctl even if rcNG script does not make use of it.
This should help users that are used to it.
As a side effect, this change will also fix the packing list.
Reported by: pointyhat via kris
Diffstat (limited to 'www/tomcat6')
-rw-r--r-- | www/tomcat6/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/www/tomcat6/Makefile b/www/tomcat6/Makefile index 379cb52a453b..8c918e8f5339 100644 --- a/www/tomcat6/Makefile +++ b/www/tomcat6/Makefile @@ -157,6 +157,9 @@ do-install: -e "/%%JAR_ARGS%%/s//\"start\",/g" \ ${WRKDIR}/daemonctl.c > ${WRKDIR}/daemonctl_.c @cd ${WRKDIR} && ${CC} -ansi -o ${CONTROL_SCRIPT_NAME} daemonctl_.c + @${CP} ${WRKDIR}/${CONTROL_SCRIPT_NAME} ${CONTROL_SCRIPT} + @${CHOWN} ${USER}:${GROUP} ${CONTROL_SCRIPT} + @${CHMOD} 6754 ${CONTROL_SCRIPT} @${ECHO_MSG} " [ DONE ]" @${ECHO_MSG} -n ">> Installing startup script..." |