From 61de1e1c903624cd378ebbf9637a9644da171859 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Fri, 12 Jun 2009 08:54:21 +0000 Subject: No need for full path of blkid, and update NEWS --- perl-install/NEWS | 1 + perl-install/fs/type.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install') 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; } -- cgit v1.2.1