diff options
author | Guillaume Rousse <guillomovitch@mandriva.org> | 2009-09-25 20:53:01 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mandriva.org> | 2009-09-25 20:53:01 +0000 |
commit | 7a2720757469011de00c8bc36958fc072ccb0e16 (patch) | |
tree | 760d5155256e9046cc8a36b664d6512937b4c61a | |
parent | da851c46046313ec3eca0467884e3d3deef7cb05 (diff) | |
download | spec-helper-7a2720757469011de00c8bc36958fc072ccb0e16.tar spec-helper-7a2720757469011de00c8bc36958fc072ccb0e16.tar.gz spec-helper-7a2720757469011de00c8bc36958fc072ccb0e16.tar.bz2 spec-helper-7a2720757469011de00c8bc36958fc072ccb0e16.tar.xz spec-helper-7a2720757469011de00c8bc36958fc072ccb0e16.zip |
fix indendation
-rwxr-xr-x | strip_and_check_elf_files | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/strip_and_check_elf_files b/strip_and_check_elf_files index 18a571f..4cc7e23 100755 --- a/strip_and_check_elf_files +++ b/strip_and_check_elf_files @@ -27,29 +27,29 @@ sub strip_files { my @to_strip = (@shared_libs, @executables); if ($ENV{EXCLUDE_FROM_STRIP}) { - my $exclude_pattern = join('|', split(/\s+/, $ENV{EXCLUDE_FROM_STRIP})); - my $compiled_pattern = qr/($exclude_pattern)/; - @to_strip = grep { !/$compiled_pattern/ } @to_strip; + my $exclude_pattern = join('|', split(/\s+/, $ENV{EXCLUDE_FROM_STRIP})); + my $compiled_pattern = qr/($exclude_pattern)/; + @to_strip = grep { !/$compiled_pattern/ } @to_strip; } system( - "strip", - "--remove-section=.comment", - "--remove-section=.note", - $_) foreach @to_strip; + "strip", + "--remove-section=.comment", + "--remove-section=.note", + $_) foreach @to_strip; } sub check_missing_or_unused_libs { foreach my $f (@shared_libs, @executables) { - my (undef, undef, @l) = `ldd -u -r $f 2>/dev/null`; - @l or next; - my $f_ = substr($f, length($buildroot)); - print STDERR "Warning: unused libraries in $f_: ", join(' ', map { basename($_) } @l), "\n"; + my (undef, undef, @l) = `ldd -u -r $f 2>/dev/null`; + @l or next; + my $f_ = substr($f, length($buildroot)); + print STDERR "Warning: unused libraries in $f_: ", join(' ', map { basename($_) } @l), "\n"; } foreach my $f (@shared_libs) { - my @l = `ldd -r $f 2>&1 >/dev/null` or next; - my $f_ = substr($f, length($buildroot)); - print STDERR "Warning: undefined symbols in $f_: ", join(' ', map { /undefined symbol: (\S+)/ ? $1 : () } @l), "\n"; + my @l = `ldd -r $f 2>&1 >/dev/null` or next; + my $f_ = substr($f, length($buildroot)); + print STDERR "Warning: undefined symbols in $f_: ", join(' ', map { /undefined symbol: (\S+)/ ? $1 : () } @l), "\n"; } } @@ -95,4 +95,8 @@ sub keep_wanted() { } } -sub basename { local $_ = shift; s|/*\s*$||; s|.*/||; $_ } +sub basename { + local $_ = shift; + s|/*\s*$||; s|.*/||; + $_ +} |