X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FUtils.pm;fp=lib%2FCatalyst%2FUtils.pm;h=6ba6f86dc9287490ea5fe75a790f731a22baea6b;hp=95eedc4d624036e50048c3a697571f563ce7f540;hb=b9b257cc297aa70b53e13d3dde802705965afe0a;hpb=c47c75173f84e35fcd30c4931b04b3f4fb1938c8 diff --git a/lib/Catalyst/Utils.pm b/lib/Catalyst/Utils.pm index 95eedc4..6ba6f86 100644 --- a/lib/Catalyst/Utils.pm +++ b/lib/Catalyst/Utils.pm @@ -207,7 +207,7 @@ sub home { =head2 find_home_unloaded_in_checkout ($path) -Tries to determine if C<$path> (or cwd if not supplied) +Tries to determine if C<$path> (or the current working directory if not supplied) looks like a checkout. Any leading lib, script or blib components will be removed, then the directory produced will be checked for the existence of a C<< dist_indicator_file_list() >>. @@ -216,12 +216,12 @@ If one is found, the directory will be returned, otherwise false. =cut +# XXX - Is this actually sane - should we just split into two simpler routines +# one for when we do have an @INC entry and one for when we don't? sub find_home_unloaded_in_checkout { my ($path) = @_; $path ||= cwd() if !defined $path || !length $path; my $home = dir($path)->absolute->cleanup; - # pop off /lib and /blib if they're there - # pop off /script if it's there. my $last_home; do { # only return the dir if it has a Makefile.PL or Build.PL or dist.ini