5 blib - Use MakeMaker's uninstalled version of a package
9 perl -Mblib script [args...]
11 perl -Mblib=dir script [args...]
15 Looks for MakeMaker-like I<'blib'> directory structure starting in
16 I<dir> (or current directory) and working back up to five levels of '..'.
18 Intended for use on command line with B<-M> option as a way of testing
19 arbitrary scripts against an uninstalled version of a package.
21 However it is possible to :
27 etc. if you really must.
31 Pollutes global name space for development only task.
35 Nick Ing-Simmons nik@tiuk.ti.com
42 use vars qw($VERSION $Verbose);
50 if ($^O eq "MSWin32" && -f "Win32.xs") {
51 # We don't use getcwd() on Windows because it will internally
52 # call Win32::GetCwd(), which will get the Win32 module loaded.
53 # That means that it would not be possible to run `make test`
54 # for the Win32 module because blib.pm would always load the
55 # installed version before @INC gets updated with the blib path.
61 if ($^O eq 'VMS') { ($dir = VMS::Filespec::unixify($dir)) =~ s-/\z--; }
67 $dir = File::Spec->curdir unless ($dir);
68 die "$dir is not a directory\n" unless (-d $dir);
71 my($blib, $blib_lib, $blib_arch);
74 $blib = File::Spec->catdir($dir, "blib");
75 $blib_lib = File::Spec->catdir($blib, "lib");
79 $blib_arch = File::Spec->catdir($blib_lib, $MacPerl::Architecture);
83 $blib_arch = File::Spec->catdir($blib, "arch");
86 if (-d $blib && -d $blib_arch && -d $blib_lib)
88 unshift(@INC,$blib_arch,$blib_lib);
89 warn "Using $blib\n" if $Verbose;
92 $dir = File::Spec->catdir($dir, File::Spec->updir);
94 die "Cannot find blib even in $dir\n";