File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -382,8 +382,7 @@ def health_check_freebsd
382382
383383 pp shellout ( "find #{ project . install_dir } / -type f | xargs file" ) . stdout
384384
385- read_shared_libs ( "find #{ project . install_dir } / -type f | xargs file | grep \" ELF\" | awk -F: '{print $1}' | sed -e 's/:$//'" , "xargs -n 1 ldd" ) do |line |
386- pp line
385+ read_shared_libs ( "find #{ project . install_dir } / -type f | xargs file | grep \" ELF\" | awk -F: '{print $1}' | sed -e 's/:$//'" , "xargs -n 1 echo" ) do |line |
387386 case line
388387 when /^(.+):$/
389388 current_library = Regexp . last_match [ 1 ]
@@ -418,7 +417,6 @@ def health_check_linux
418417 bad_libs = { }
419418 good_libs = { }
420419
421- # This algorithm runs on both Linux and FreeBSD and needs to be MANUALLY tested on both
422420 read_shared_libs ( "find #{ project . install_dir } / -type f" , "xargs ldd" ) do |line |
423421 case line
424422 when /^(.+):$/
You can’t perform that action at this time.
0 commit comments