summaryrefslogtreecommitdiff
path: root/fml/libexec/loader.in
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-11-27 11:50:26 +0000
committerfukachan <fukachan>2001-11-27 11:50:26 +0000
commitd6202c32776d4fd5e4453c0ec56314e62f6c57e0 (patch)
tree29ce8482db0fd4445d2020b493f52f326a5c0505 /fml/libexec/loader.in
parent886d8a97bcd3c3e85f5430f61ff60eac6a4967bc (diff)
downloadfml8-d6202c32776d4fd5e4453c0ec56314e62f6c57e0.tar.gz
fml8-d6202c32776d4fd5e4453c0ec56314e62f6c57e0.tar.bz2
fml8-d6202c32776d4fd5e4453c0ec56314e62f6c57e0.zip
nuke duplication message
Diffstat (limited to 'fml/libexec/loader.in')
-rwxr-xr-xfml/libexec/loader.in9
1 files changed, 3 insertions, 6 deletions
diff --git a/fml/libexec/loader.in b/fml/libexec/loader.in
index b0cf0752..4e599cfa 100755
--- a/fml/libexec/loader.in
+++ b/fml/libexec/loader.in
@@ -4,7 +4,7 @@
# Copyright (C) 2000-2001 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: loader.in,v 1.5 2001/11/27 04:00:20 fukachan Exp $
+# $FML: loader.in,v 1.6 2001/11/27 08:38:38 fukachan Exp $
#
eval 'exec @PERL@ -S $0 ${1+"$@"}'
@@ -117,13 +117,10 @@ sub Bootstrap
eval q{ &Bootstrap2($main_cf_file, $main_cf);};
if ($@) {
my $reason = $@;
- if (defined($main_cf->{ debug })) {
- __CROAK("fail to execute Bootstrap2($main_cf_file)", $reason);
- }
- else {
+ unless (defined($main_cf->{ debug })) {
$reason =~ s/[\n\s]*\s+at\s+.*$//m;
- __CROAK($reason, $reason);
}
+ __CROAK("fail to execute Bootstrap2($main_cf_file)", $reason);
}
}
else {