diff options
-rw-r--r-- | perl-install/install_any.pm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 0350a827d..890e6b4c3 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1897,11 +1897,8 @@ sub copy_advertising { foreach (@files) { chomp; getAndSaveFile("$source_dir/$_", "$dir/$_"); - s/\.png/.pl/; - getAndSaveFile("$source_dir/$_", "$dir/$_"); - s/\.pl/_icon.png/; - getAndSaveFile("$source_dir/$_", "$dir/$_"); - s/_icon\.png/.png/; + (my $pl = $_) =~ s/\.png/.pl/; + getAndSaveFile("$source_dir/$pl", "$dir/$pl"); } @advertising_images = map { "$dir/$_" } @files; } |