Changeset 9830
- Timestamp:
- 04/19/08 03:38:06 (5 years ago)
- Location:
- lang/perl/Devel-SearchINC/trunk
- Files:
-
- 2 modified
-
Changes (modified) (1 diff)
-
lib/Devel/SearchINC/FindLib.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lang/perl/Devel-SearchINC/trunk/Changes
r9771 r9830 14 14 - updated MANIFEST 15 15 - moved generated documentation of interited methods to after documentation of this class' methods so the manpage is more readable 16 date: 2008-01-31T16:01:19Z 16 - Devel::SearchINC::FindLib can now handle semicolon-separated paths as well 17 date: 2008-04-18T15:47:06Z 17 18 tags: 18 19 - NEWFEATURE -
lang/perl/Devel-SearchINC/trunk/lib/Devel/SearchINC/FindLib.pm
r9771 r9830 11 11 sub import { 12 12 my $pkg = shift; 13 13 14 for my $path (@_) { 15 16 # Allow paths to be separated by semicolons as well as colons; 17 # splitting along colons is done by perl already. 18 19 my @path = 20 map { s/^~/$ENV{HOME}/; $_ } 21 split /\s*;\s*/ => 22 $path; 23 14 24 find(sub { 15 25 return unless -d; … … 24 34 unshift @INC, $File::Find::name; 25 35 } 26 }, $path);36 }, @path); 27 37 } 28 38 unshift @INC, split /:/ => $ENV{SEARCHINC_FIRST}
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)