From 1a60c9d9994179f80f592880af6c8003790d8d1a Mon Sep 17 00:00:00 2001 From: freesource Date: Tue, 24 Jul 2001 06:13:02 +0000 Subject: [PATCH] Fixed an obscure bug due to hardware. --- Error.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Error.pm b/Error.pm index 40c5eb6..9ba9003 100644 --- a/Error.pm +++ b/Error.pm @@ -1,4 +1,4 @@ -############################################################################# +############################################################################ ## ## Error.pm ## Copyright (C) 2000 Modifications by the gBootRoot Project @@ -137,7 +137,9 @@ sub err_custom { system("$_[0] > /dev/null 2>&1"); } else { - sys("$_[0]"); + # Yard::sys .. this seems to be necessary for my flakey floppy drive + # which doesn't even support 1722. + Yard::sys("$_[0]"); } error_window($_[1]) if ($? != 0); if (defined $error_window) {