[Rt-commit] r2881 - Module-Install-RTx/lib/Module/Install
robert at bestpractical.com
robert at bestpractical.com
Fri May 13 12:08:25 EDT 2005
Author: robert
Date: Fri May 13 12:08:25 2005
New Revision: 2881
Modified:
Module-Install-RTx/lib/Module/Install/RTx.pm
Log:
Add $_/lib to path used to search for RT.pm after being prompted,
so if people forget the lib, things are happier.
Modified: Module-Install-RTx/lib/Module/Install/RTx.pm
==============================================================================
--- Module-Install-RTx/lib/Module/Install/RTx.pm (original)
+++ Module-Install-RTx/lib/Module/Install/RTx.pm Fri May 13 12:08:25 2005
@@ -39,7 +39,7 @@
until ( eval { require RT; $RT::LocalPath } ) {
warn "Cannot find the location of RT.pm that defines \$RT::LocalPath in: @INC\n";
$_ = $self->prompt("Path to your RT.pm:") or exit;
- push @INC, $_, "$_/rt3/lib", "$_/lib/rt3";
+ push @INC, $_, "$_/rt3/lib", "$_/lib/rt3", "$_/lib";
}
}
More information about the Rt-commit
mailing list