diff options
| author | fukachan <fukachan> | 2004-01-02 02:11:25 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2004-01-02 02:11:25 +0000 |
| commit | 25d833bdd1daedd513f038da4d6dc72b499bd9e4 (patch) | |
| tree | 6c46ce19a00f1c3ab1292aeff368033bc37993e4 /fml/lib/FML/Process/Configure.pm | |
| parent | 63f8e58437c9515050415f9a619348c478d39c2b (diff) | |
| download | fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.tar.gz fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.tar.bz2 fml8-25d833bdd1daedd513f038da4d6dc72b499bd9e4.zip | |
$curproc->resolve_ml_specific_variables( $args );
$curproc->load_config_files( $args->{ cf_list } );
=>
$curproc->resolve_ml_specific_variables();
my $cf_list = $curproc->get_config_files_list();
$curproc->load_config_files($cf_list);
$curproc->parse_incoming_message($args);
=>
$curproc->parse_incoming_message();
Diffstat (limited to 'fml/lib/FML/Process/Configure.pm')
| -rw-r--r-- | fml/lib/FML/Process/Configure.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/Configure.pm b/fml/lib/FML/Process/Configure.pm index f641df41..93feebf7 100644 --- a/fml/lib/FML/Process/Configure.pm +++ b/fml/lib/FML/Process/Configure.pm @@ -3,7 +3,7 @@ # Copyright (C) 2001,2002,2003 Ken'ichi Fukamachi # All rights reserved. # -# $FML: Configure.pm,v 1.57 2003/11/16 12:23:48 fukachan Exp $ +# $FML: Configure.pm,v 1.58 2003/11/29 10:24:28 fukachan Exp $ # package FML::Process::Configure; @@ -77,8 +77,9 @@ sub prepare my $eval = $config->get_hook( 'makefml_prepare_start_hook' ); if ($eval) { eval qq{ $eval; }; $curproc->logwarn($@) if $@; } - $curproc->resolve_ml_specific_variables( $args ); - $curproc->load_config_files( $args->{ cf_list } ); + $curproc->resolve_ml_specific_variables(); + my $cf_list = $curproc->get_config_files_list(); + $curproc->load_config_files($cf_list); $curproc->fix_perl_include_path(); $curproc->log_message_init(); |
