summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-06-12 08:54:21 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-06-12 08:54:21 +0000
commit61de1e1c903624cd378ebbf9637a9644da171859 (patch)
tree99672a9c1b4fbe25596f8d5a0807ac731b6842dc
parent42266fffc1f2212b1635c89f7c3f55eac544cc80 (diff)
downloaddrakx-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
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/fs/type.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 610130306..bc1a2c39c 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,4 +1,5 @@
- use Hal list of recovery partitions (#51532)
+- use blkid instead of vol_id which we no longer ship
Version 12.37 - 02 Jun 2009
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;
}