diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-01-10 16:08:34 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-01-10 16:08:34 +0000 |
commit | 5b3615c6c03f8961facaf6e35c8963c0f9456197 (patch) | |
tree | 2d27c3298cce44eae42ceb819204454395bdd042 /perl-install/install_any.pm | |
parent | 3a2545452f8ddb6bfe8eee02c313769d38f74300 (diff) | |
download | drakx-5b3615c6c03f8961facaf6e35c8963c0f9456197.tar drakx-5b3615c6c03f8961facaf6e35c8963c0f9456197.tar.gz drakx-5b3615c6c03f8961facaf6e35c8963c0f9456197.tar.bz2 drakx-5b3615c6c03f8961facaf6e35c8963c0f9456197.tar.xz drakx-5b3615c6c03f8961facaf6e35c8963c0f9456197.zip |
no_comment
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 8ab9d4073..72a442c3f 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -648,9 +648,13 @@ sub kdeicons_postinstall($) { } elsif (m|^/dev/(\S+)\s+(/mnt/DOS_\S*)\s+|) { my %toreplace = ( device => $1, id => $1, mntpoint => $2 ); template2userfile($prefix, "/usr/share/Dos_.kdelnk.in", "Desktop/Dos_$1.kdelnk", 1, %toreplace); + symlink "hd_umount.xpm", "$prefix/usr/share/icons/hd_unmount.xpm"; + symlink "hd_umount.xpm", "$prefix/usr/share/icons/large/hd_unmount.xpm"; } elsif (m|^/dev/(\S+)\s+(\S*)\s+vfat\s+|) { my %toreplace = ( device => $1, id => $1, mntpoint => $2 ); template2userfile($prefix, "/usr/share/Dos_.kdelnk.in", "Desktop/Dos_$1.kdelnk", 1, %toreplace); + symlink "hd_umount.xpm", "$prefix/usr/share/icons/hd_unmount.xpm"; + symlink "hd_umount.xpm", "$prefix/usr/share/icons/large/hd_unmount.xpm"; } } |