From 7a21da20c34db394abcde18f08d106edc47ae8c2 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Wed, 19 Feb 2003 23:46:30 +0000 Subject: to workaround perl bug removing UTF8 flag when passing scalars to die's, pass a scalar-ref. but we need to de-ref, so it might break many things :). let's make a prayer :). --- perl-install/any.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/any.pm') diff --git a/perl-install/any.pm b/perl-install/any.pm index db555585e..f5299bb9e 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -111,7 +111,7 @@ because XFS needs a very large driver).") : ''))) or return; } my $floppy_dev; - my @l = detect_devices::floppies_dev() or die N("Sorry, no floppy drive available"); + my @l = detect_devices::floppies_dev() or die \N("Sorry, no floppy drive available"); my %l = ( 'fd0' => N("First floppy drive"), 'fd1' => N("Second floppy drive"), -- cgit v1.2.1