diff options
author | bugreport%peshkin.net <> | 2002-09-01 09:45:44 +0200 |
---|---|---|
committer | bugreport%peshkin.net <> | 2002-09-01 09:45:44 +0200 |
commit | 164042b8359e1bcdbe67b1039934987255c567e6 (patch) | |
tree | 35b3e768dbc324a8d052e22e862bc11af0819e5a | |
parent | e37bab52fe933afc29428cd22527909ab4651acf (diff) | |
download | bugzilla-164042b8359e1bcdbe67b1039934987255c567e6.tar.gz bugzilla-164042b8359e1bcdbe67b1039934987255c567e6.tar.xz |
Recheckin due to misapplied patch for bug 123957
-rwxr-xr-x | checksetup.pl | 4 |
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 |