diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2005-07-31 08:18:12 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2005-07-31 08:18:12 +0000 |
commit | 72f73301d3eb543a5eb1c3598ebe2e35a2d29446 (patch) | |
tree | c0ce67acc511628839f830bd62ebac625600b6ab /perl-install/any.pm | |
parent | 786dc06dcee37d35ef89a23069716c5b7cbcf707 (diff) | |
download | drakx-72f73301d3eb543a5eb1c3598ebe2e35a2d29446.tar drakx-72f73301d3eb543a5eb1c3598ebe2e35a2d29446.tar.gz drakx-72f73301d3eb543a5eb1c3598ebe2e35a2d29446.tar.bz2 drakx-72f73301d3eb543a5eb1c3598ebe2e35a2d29446.tar.xz drakx-72f73301d3eb543a5eb1c3598ebe2e35a2d29446.zip |
fix last commit
Diffstat (limited to 'perl-install/any.pm')
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index e18dba09a..8823bbca3 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -918,7 +918,7 @@ UNREGISTER ^$devfs_if\$ CFUNCTION GLOBAL unlink $of UNREGISTER ^$devfs_if\$ CFUNCTION GLOBAL unlink $if ") if $devfs_if ne $if && $if !~ /^hd[a-z]/ && $if !~ /^sr/ && $if !~ /^sd[a-z]/; - output_p("$::prefix/etc/udev/rules.d/$of.rules", qq(KERNEL="$if", SYMLINK="$of"\n)) if $of =~ /mouse|dvd/; + output_p("$::prefix/etc/udev/rules.d/$of.rules", qq(KERNEL="$if", SYMLINK="$of"\n)) if $of !~ /mouse|dvd/; #- when creating a symlink on the system, use devfs name if devfs is mounted symlinkf($devfs_if, "$::prefix/dev/$if") if $devfs_if ne $if && detect_devices::dev_is_devfs(); |