From 33766cd209a63c201766ce7ab13e343eb69ebae2 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 9 Aug 2004 07:34:09 +0000 Subject: use new ISO images volume name (#10543) --- perl-install/install_any.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 0290f423c..07ba0c1dc 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -93,7 +93,8 @@ sub look_for_ISO_images() { my $get_iso_ids = sub { my ($F) = @_; my ($vol_id, $app_id) = c::get_iso_volume_ids(fileno $F); - my ($cd_set) = $vol_id =~ /^(.*)-[0-9]+$/; + #- the ISO volume names must end in -Disc\d+ + my ($cd_set) = $vol_id =~ /^(.*)-Disc\d+$/; $cd_set && { cd_set => $cd_set, app_id => $app_id }; }; -- cgit v1.2.1