diff options
author | Shlomi Fish <shlomif@shlomifish.org> | 2015-07-25 15:37:17 +0300 |
---|---|---|
committer | Shlomi Fish <shlomif@shlomifish.org> | 2015-07-25 15:37:17 +0300 |
commit | d328576bb582704c38319cbead36723fca6874af (patch) | |
tree | 08da193b159cc82f69cb81c8ebaf27c665d0510e /compress_files | |
parent | 1aebb8fa9656dd85275e0033fc9f2dbc94557171 (diff) | |
download | spec-helper-d328576bb582704c38319cbead36723fca6874af.tar spec-helper-d328576bb582704c38319cbead36723fca6874af.tar.gz spec-helper-d328576bb582704c38319cbead36723fca6874af.tar.bz2 spec-helper-d328576bb582704c38319cbead36723fca6874af.tar.xz spec-helper-d328576bb582704c38319cbead36723fca6874af.zip |
Fix warnings/etc. on recent perls.
Diffstat (limited to 'compress_files')
-rwxr-xr-x | compress_files | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/compress_files b/compress_files index 0d90c42..9d5e50f 100755 --- a/compress_files +++ b/compress_files @@ -126,7 +126,9 @@ if (@files) { # Fix up symlinks that were pointing to the uncompressed files. sub link_function { - local ($_) = @_; + # $_ is already defined by File::Find. + # + # skip everything but symlinks return unless -l $_; # skip non-dangling symlinks @@ -140,6 +142,8 @@ sub link_function { # Bad link go on nowhere (any better idea) ? unlink $_; } + + return; } File::Find::find(\&link_function, $buildroot); |