summaryrefslogtreecommitdiff
path: root/www/rt32
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2007-10-10 03:00:36 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2007-10-10 03:00:36 +0000
commit62cab774548d97586bb3c7a47b0f1cfe9a443e4a (patch)
tree6c4dd507c7879eddd1f8b2aa7d021864b837bea4 /www/rt32
parent- Update to 2.6 (diff)
[PATCH]: www/* use {} vs () consistently
Fix all occurrences of this that are not part of REPLACE_CMD commands. PR: ports/117051 Submitted by: "Philip M. Gollucci" <pgollucci@p6m7g8.com>
Notes
Notes: svn path=/head/; revision=201234
Diffstat (limited to 'www/rt32')
-rw-r--r--www/rt32/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/www/rt32/Makefile b/www/rt32/Makefile
index ff6e6797661d..ff513cda0ea7 100644
--- a/www/rt32/Makefile
+++ b/www/rt32/Makefile
@@ -153,9 +153,9 @@ post-install:
.if !defined(INITIAL_INSTALL)
.if defined(UPGRADE_RT30)
.for version in 3.1.0 3.1.15 3.1.17
- -@${PERL} $(RT_PATH)/sbin/rt-setup-database --action schema --datadir ${WRKSRC}/etc/upgrade/${version} --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
- -@${PERL} $(RT_PATH)/sbin/rt-setup-database --action acl --datadir ${WRKSRC}/etc/upgrade/${version} --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
- -@${PERL} $(RT_PATH)/sbin/rt-setup-database --action insert --datadir ${WRKSRC}/etc/upgrade/${version} --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
+ -@${PERL} ${RT_PATH}/sbin/rt-setup-database --action schema --datadir ${WRKSRC}/etc/upgrade/${version} --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
+ -@${PERL} ${RT_PATH}/sbin/rt-setup-database --action acl --datadir ${WRKSRC}/etc/upgrade/${version} --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
+ -@${PERL} ${RT_PATH}/sbin/rt-setup-database --action insert --datadir ${WRKSRC}/etc/upgrade/${version} --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
.endfor
@${ECHO} ""
@${ECHO} "Upgrade of RT3 complete."
@@ -175,8 +175,8 @@ post-install:
@${ECHO} ""
.endif
.else
- -@${PERL} $(RT_PATH)/sbin/rt-setup-database --force --action drop --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
- -@${PERL} $(RT_PATH)/sbin/rt-setup-database --force --action init --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
+ -@${PERL} ${RT_PATH}/sbin/rt-setup-database --force --action drop --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
+ -@${PERL} ${RT_PATH}/sbin/rt-setup-database --force --action init --dba '${DB_DBA_USER}' --dba-password '${DB_DBA_PASSWORD}'
@${SED} s!%%RT_PATH%%!${RT_PATH}!g ${PKGMESSAGE}
.endif