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:
parent
81ee541252
commit
5691d3ca77
@ -582,7 +582,12 @@ sub library_dependencies {
|
|||||||
push(@{$lib_needed_by{$file}}, "INCLUDED BY USER");
|
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
|
##### EXECUTABLE LOADABLE BINARY
|
||||||
##### Run ldd to get library dependencies.
|
##### Run ldd to get library dependencies.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user