diff options
| author | fukachan <fukachan> | 2001-05-05 03:56:09 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-05-05 03:56:09 +0000 |
| commit | bb5d221c778449ac0027e3b1c033eb6be528ab61 (patch) | |
| tree | 4ad91c5d24c05a4625e5deae9a80449bc6b3c39b /fml/lib/FML/Process | |
| parent | a2d13385bced6ec0db5514380e1dbe51696c7f77 (diff) | |
| download | fml8-bb5d221c778449ac0027e3b1c033eb6be528ab61.tar.gz fml8-bb5d221c778449ac0027e3b1c033eb6be528ab61.tar.bz2 fml8-bb5d221c778449ac0027e3b1c033eb6be528ab61.zip | |
disable expand_variables() call. See FML::Config for more details.
variable expansion is evaluated dynamically on demand.
Diffstat (limited to 'fml/lib/FML/Process')
| -rw-r--r-- | fml/lib/FML/Process/Kernel.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/Kernel.pm b/fml/lib/FML/Process/Kernel.pm index 94e21b51..e53b9d4a 100644 --- a/fml/lib/FML/Process/Kernel.pm +++ b/fml/lib/FML/Process/Kernel.pm @@ -5,7 +5,7 @@ # redistribute it and/or modify it under the same terms as Perl itself. # # $Id$ -# $FML: Kernel.pm,v 1.41 2001/04/14 14:44:23 fukachan Exp $ +# $FML: Kernel.pm,v 1.42 2001/04/15 08:46:39 fukachan Exp $ # package FML::Process::Kernel; @@ -369,7 +369,8 @@ sub load_config_files } # XXX We need to expand variables after we load all *cf files. - $curproc->{ config }->expand_variables(); + # XXX 2001/05/05 changed to dynamic expansion for hook + # $curproc->{ config }->expand_variables(); } |
