1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-23 09:03:23 -05:00

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

configurations files.
This commit is contained in:
freesource 2001-11-28 20:16:54 +00:00
parent 81ee541252
commit 5691d3ca77

View File

@ -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.