diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-06-12 08:54:21 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-06-12 08:54:21 +0000 |
commit | 61de1e1c903624cd378ebbf9637a9644da171859 (patch) | |
tree | 99672a9c1b4fbe25596f8d5a0807ac731b6842dc /perl-install/fs | |
parent | 42266fffc1f2212b1635c89f7c3f55eac544cc80 (diff) | |
download | drakx-61de1e1c903624cd378ebbf9637a9644da171859.tar drakx-61de1e1c903624cd378ebbf9637a9644da171859.tar.gz drakx-61de1e1c903624cd378ebbf9637a9644da171859.tar.bz2 drakx-61de1e1c903624cd378ebbf9637a9644da171859.tar.xz drakx-61de1e1c903624cd378ebbf9637a9644da171859.zip |
No need for full path of blkid, and update NEWS
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/type.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm index 85d2b64c2..1933f33f3 100644 --- a/perl-install/fs/type.pm +++ b/perl-install/fs/type.pm @@ -275,7 +275,7 @@ sub call_blkid { my %h = map { if_(/(.*?)=(.*)/, $1 => $2); - } run_program::get_stdout('/sbin/blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device})); + } run_program::get_stdout('blkid', '2>', '/dev/null', '-o', 'udev', '-p', devices::make($part->{device})); \%h; } |