Recheckin due to misapplied patch for bug 123957

This commit is contained in:
bugreport%peshkin.net 2002-09-01 00:45:44 +00:00
parent 83dad43adb
commit 55530103e7

View File

@ -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