summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/HTMLify.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-08-14 03:31:55 +0000
committerfukachan <fukachan>2002-08-14 03:31:55 +0000
commitf58276939fe963f45c9d803ec182e0815e573eda (patch)
tree746e08590e556910e2fd5469b70061205c192bf3 /fml/lib/FML/Process/HTMLify.pm
parente191040fd7cb8c36b6f74fb7332c1bf45f5c9e56 (diff)
downloadfml8-f58276939fe963f45c9d803ec182e0815e573eda.tar.gz
fml8-f58276939fe963f45c9d803ec182e0815e573eda.tar.bz2
fml8-f58276939fe963f45c9d803ec182e0815e573eda.zip
apply fix_perl_include_path(); after load_config_files() runs to add
ml local library path to @INC. This is used for ml specific extention e.g. command extension.
Diffstat (limited to 'fml/lib/FML/Process/HTMLify.pm')
-rw-r--r--fml/lib/FML/Process/HTMLify.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/fml/lib/FML/Process/HTMLify.pm b/fml/lib/FML/Process/HTMLify.pm
index 3fc168fe..cc4fb800 100644
--- a/fml/lib/FML/Process/HTMLify.pm
+++ b/fml/lib/FML/Process/HTMLify.pm
@@ -3,7 +3,7 @@
# Copyright (C) 2001,2002 Ken'ichi Fukamachi
# All rights reserved.
#
-# $FML: HTMLify.pm,v 1.20 2002/06/27 08:25:50 fukachan Exp $
+# $FML: HTMLify.pm,v 1.21 2002/07/02 03:59:19 fukachan Exp $
#
package FML::Process::HTMLify;
@@ -73,6 +73,7 @@ sub prepare
$curproc->resolve_ml_specific_variables( $args );
$curproc->load_config_files( $args->{ cf_list } );
+ $curproc->fix_perl_include_path();
$eval = $config->get_hook( 'fmlhtmlify_prepare_end_hook' );
if ($eval) { eval qq{ $eval; }; LogWarn($@) if $@; }