summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;
}