diff options
-rwxr-xr-x | find-broken-perl-packages.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/find-broken-perl-packages.sh b/find-broken-perl-packages.sh index c6ff501..faa2bb6 100755 --- a/find-broken-perl-packages.sh +++ b/find-broken-perl-packages.sh @@ -28,6 +28,9 @@ testmodule() { elif grep -q "Perl API version .* of .* does not match .*" <<< $output; then echo $file >> "$tmpdir/${prefix}raw.txt" echo "$module" >> "$tmpdir/${prefix}perl-modules.txt" + elif grep -q "loadable library and perl binaries are mismatched" <<< $output; then + echo $file >> "$tmpdir/${prefix}raw.txt" + echo "$module" >> "$tmpdir/${prefix}perl-modules.txt" fi } |