summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2002-09-01 09:45:44 +0200
committerbugreport%peshkin.net <>2002-09-01 09:45:44 +0200
commit164042b8359e1bcdbe67b1039934987255c567e6 (patch)
tree35b3e768dbc324a8d052e22e862bc11af0819e5a /checksetup.pl
parente37bab52fe933afc29428cd22527909ab4651acf (diff)
downloadbugzilla-164042b8359e1bcdbe67b1039934987255c567e6.tar.gz
bugzilla-164042b8359e1bcdbe67b1039934987255c567e6.tar.xz
Recheckin due to misapplied patch for bug 123957
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl
index d387571b4..c5a00b99f 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