libdev-checklib-perl: upgrade 1.14 -> 1.16

0001-CheckLib.pm-don-t-execute-the-binary.patch
refreshed for new version.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Wang Mingyu 2022-09-06 13:32:14 +08:00 committed by Khem Raj
parent 0c6171ed68
commit 767e7f360f
2 changed files with 11 additions and 12 deletions

View File

@ -29,18 +29,18 @@ Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/Devel/CheckLib.pm b/lib/Devel/CheckLib.pm
index e45cfb4..d228bb5 100644
index 2e5a252..5c2f0b0 100644
--- a/lib/Devel/CheckLib.pm
+++ b/lib/Devel/CheckLib.pm
@@ -424,7 +424,7 @@ sub assert_lib {
my $absexefile = File::Spec->rel2abs($exefile);
$absexefile = '"'.$absexefile.'"' if $absexefile =~ m/\s/;
if (!$not_execute && system($absexefile) != 0) {
- push @wrongresult, $lib;
+ print "Checking the lib $lib\n";
@@ -403,7 +403,7 @@ sub assert_lib {
if ($execute) {
my $retval = system($absexefile);
warn "# return value: $retval\n" if $args{debug};
- push @wrongresult, $lib if $retval != 0;
+ print "Checking the lib $lib\n" if $retval != 0;
}
else {
if ($analyze_binary) {
push @wronganalysis, $lib
if $analyze_binary and !$analyze_binary->($lib, $exefile);
--
2.17.1
2.25.1

View File

@ -11,8 +11,7 @@ LIC_FILES_CHKSUM = "file://README;md5=7911cdbb572d25c5f2e2ea17f669efc2"
SRC_URI = "https://cpan.metacpan.org/modules/by-module/Devel/Devel-CheckLib-${PV}.tar.gz \
file://0001-CheckLib.pm-don-t-execute-the-binary.patch \
"
SRC_URI[md5sum] = "3519cbf9fe5ec3404449d5330ee5537f"
SRC_URI[sha256sum] = "f21c5e299ad3ce0fdc0cb0f41378dca85a70e8d6c9a7599f0e56a957200ec294"
SRC_URI[sha256sum] = "869d38c258e646dcef676609f0dd7ca90f085f56cf6fd7001b019a5d5b831fca"
S = "${WORKDIR}/Devel-CheckLib-${PV}"