diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2022-09-06 13:32:14 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-09-06 08:43:34 -0700 |
commit | 767e7f360fbc036103dcbdf569bd59261be39e96 (patch) | |
tree | f8c2049987757b2a7f139cb607c79c117220b4fa /meta-oe/recipes-devtools/perl/libdev-checklib-perl/0001-CheckLib.pm-don-t-execute-the-binary.patch | |
parent | 0c6171ed687bad1bc717e055a3d227b061713820 (diff) | |
download | meta-openembedded-767e7f360fbc036103dcbdf569bd59261be39e96.tar.gz |
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>
Diffstat (limited to 'meta-oe/recipes-devtools/perl/libdev-checklib-perl/0001-CheckLib.pm-don-t-execute-the-binary.patch')
-rw-r--r-- | meta-oe/recipes-devtools/perl/libdev-checklib-perl/0001-CheckLib.pm-don-t-execute-the-binary.patch | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/meta-oe/recipes-devtools/perl/libdev-checklib-perl/0001-CheckLib.pm-don-t-execute-the-binary.patch b/meta-oe/recipes-devtools/perl/libdev-checklib-perl/0001-CheckLib.pm-don-t-execute-the-binary.patch index 78a7e63b9e..8d4920b390 100644 --- a/meta-oe/recipes-devtools/perl/libdev-checklib-perl/0001-CheckLib.pm-don-t-execute-the-binary.patch +++ b/meta-oe/recipes-devtools/perl/libdev-checklib-perl/0001-CheckLib.pm-don-t-execute-the-binary.patch | |||
@@ -29,18 +29,18 @@ Signed-off-by: Mingli Yu <mingli.yu@windriver.com> | |||
29 | 1 file changed, 1 insertion(+), 1 deletion(-) | 29 | 1 file changed, 1 insertion(+), 1 deletion(-) |
30 | 30 | ||
31 | diff --git a/lib/Devel/CheckLib.pm b/lib/Devel/CheckLib.pm | 31 | diff --git a/lib/Devel/CheckLib.pm b/lib/Devel/CheckLib.pm |
32 | index e45cfb4..d228bb5 100644 | 32 | index 2e5a252..5c2f0b0 100644 |
33 | --- a/lib/Devel/CheckLib.pm | 33 | --- a/lib/Devel/CheckLib.pm |
34 | +++ b/lib/Devel/CheckLib.pm | 34 | +++ b/lib/Devel/CheckLib.pm |
35 | @@ -424,7 +424,7 @@ sub assert_lib { | 35 | @@ -403,7 +403,7 @@ sub assert_lib { |
36 | my $absexefile = File::Spec->rel2abs($exefile); | 36 | if ($execute) { |
37 | $absexefile = '"'.$absexefile.'"' if $absexefile =~ m/\s/; | 37 | my $retval = system($absexefile); |
38 | if (!$not_execute && system($absexefile) != 0) { | 38 | warn "# return value: $retval\n" if $args{debug}; |
39 | - push @wrongresult, $lib; | 39 | - push @wrongresult, $lib if $retval != 0; |
40 | + print "Checking the lib $lib\n"; | 40 | + print "Checking the lib $lib\n" if $retval != 0; |
41 | } | 41 | } |
42 | else { | 42 | push @wronganalysis, $lib |
43 | if ($analyze_binary) { | 43 | if $analyze_binary and !$analyze_binary->($lib, $exefile); |
44 | -- | 44 | -- |
45 | 2.17.1 | 45 | 2.25.1 |
46 | 46 | ||