diff options
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 224bdfdcc..ab39349c4 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -1025,6 +1025,9 @@ sub copy_advertising { foreach (@files) { chomp; getAndSaveFile("$source_dir/$_", "$dir/$_"); + s/\.png/\.pl/; + getAndSaveFile("$source_dir/$_", "$dir/$_"); + s/\.pl/\.png/; } @advertising_images = map { "$dir/$_" } @files; } |