diff options
author | Achim Bohnet <ach@mpe.mpg.de> | 1998-04-06 23:09:24 +0200 |
---|---|---|
committer | Malcolm Beattie <mbeattie@sable.ox.ac.uk> | 1998-05-14 15:33:48 +0000 |
commit | e8aa0dbcfc512edda5a9ea22dbedcc4776290cd1 (patch) | |
tree | 73a470bda70263e0736b9bae56a90205f764363e /lib | |
parent | 47c6d7655fb58c9fbd38a32955939fd698a4b2e6 (diff) | |
download | perl-e8aa0dbcfc512edda5a9ea22dbedcc4776290cd1.tar.gz |
Install extensions with bootstrap (again) in $archlib
p4raw-id: //depot/perl@957
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/Install.pm | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/ExtUtils/Install.pm b/lib/ExtUtils/Install.pm index 992d178659..6a5c1847ac 100644 --- a/lib/ExtUtils/Install.pm +++ b/lib/ExtUtils/Install.pm @@ -81,10 +81,13 @@ sub install { #there are any files in arch. So we depend on having ./blib/arch #hardcoded here. my $targetroot = $hash{$source}; - if ($source eq "./blib/lib" and - exists $hash{"./blib/arch"} and - directory_not_empty("./blib/arch")) { - $targetroot = $hash{"./blib/arch"}; + if ($source eq "blib/lib" and + exists $hash{"blib/arch"} and + directory_not_empty("blib/arch")) { + $targetroot = $hash{"blib/arch"}; + print "Files found in blib/arch --> Installing files in " + . "blib/lib into architecture dependend library tree!\n" + ; #if $verbose>1; } chdir($source) or next; find(sub { |