From: bugreport%peshkin.net <> Date: Sun, 1 Sep 2002 07:45:44 +0000 (+0000) Subject: Recheckin due to misapplied patch for bug 123957 X-Git-Tag: bugzilla-2.17.1~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=164042b8359e1bcdbe67b1039934987255c567e6;p=thirdparty%2Fbugzilla.git Recheckin due to misapplied patch for bug 123957 --- diff --git a/checksetup.pl b/checksetup.pl index d387571b4f..c5a00b99f8 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -322,8 +322,8 @@ print "Checking user setup ...\n"; $@ = undef; if ($ARGV[0]) { do $ARGV[0] - or eval die("Error $! processing $ARGV[0]") - or die("Error $@ processing $ARGV[0]"); + or ($@ && die("Error $@ processing $ARGV[0]")) + or die("Error $! processing $ARGV[0]"); } do 'localconfig'; if ($@) { # capture errors in localconfig, bug 97290