Browse Source

Now it works really nicely, automatically gets the proper libraries for pam and nss using their

configurations files.
master
freesource 23 years ago
parent
commit
5691d3ca77
  1. 7
      BootRoot/Yard.pm

7
BootRoot/Yard.pm

@ -582,7 +582,12 @@ sub library_dependencies {
push(@{$lib_needed_by{$file}}, "INCLUDED BY USER");
}
if (-f $file and -B _ and -x _ and $file_line =~ /executable/) {
## We make one exception here for pam service modules --freesource
## This can be turned off and on.
if ( ( -f $file and -B _ and -x _ and $file_line =~ /executable/ ) ||
( $file =~ m,/security/pam_\w+\.so, )
) {
##### EXECUTABLE LOADABLE BINARY
##### Run ldd to get library dependencies.

Loading…
Cancel
Save