[Rt-commit] rt branch, 3.8-trunk, updated. rt-3.8.5-203-g642fe7d
Kevin Falcone
falcone at bestpractical.com
Wed Sep 30 16:38:15 EDT 2009
The branch, 3.8-trunk has been updated
via 642fe7d12096a001eae3d9d16cf0d33a61a3743e (commit)
from 2ee0be2a3d4f81aafe72609820f3c46a34b46ff9 (commit)
Summary of changes:
Makefile.in | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit 642fe7d12096a001eae3d9d16cf0d33a61a3743e
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Wed Sep 30 16:35:30 2009 -0400
Specify libpath so if you have an installed RT that loads plugins,
recreating the database doesn't die
diff --git a/Makefile.in b/Makefile.in
index 032edcf..be01607 100755
--- a/Makefile.in
+++ b/Makefile.in
@@ -386,18 +386,18 @@ regression-install: config-install
# {{{ database-installation
regression-reset-db: force-dropdb
- $(PERL) sbin/rt-setup-database --action init --dba $(DB_DBA) --dba-password ''
+ $(PERL) -I$(LOCAL_LIB_PATH) -I$(RT_LIB_PATH) sbin/rt-setup-database --action init --dba $(DB_DBA) --dba-password ''
initdb :: initialize-database
initialize-database:
- $(PERL) sbin/rt-setup-database --action init --dba $(DB_DBA) --prompt-for-dba-password
+ $(PERL) -I$(LOCAL_LIB_PATH) -I$(RT_LIB_PATH) sbin/rt-setup-database --action init --dba $(DB_DBA) --prompt-for-dba-password
dropdb:
- $(PERL) sbin/rt-setup-database --action drop --dba $(DB_DBA) --prompt-for-dba-password
+ $(PERL) -I$(LOCAL_LIB_PATH) -I$(RT_LIB_PATH) sbin/rt-setup-database --action drop --dba $(DB_DBA) --prompt-for-dba-password
force-dropdb:
- $(PERL) sbin/rt-setup-database --action drop --dba $(DB_DBA) --dba-password '' --force
+ $(PERL) -I$(LOCAL_LIB_PATH) -I$(RT_LIB_PATH) sbin/rt-setup-database --action drop --dba $(DB_DBA) --dba-password '' --force
# }}}
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list