diff options
| author | fukachan <fukachan> | 2001-03-20 15:42:35 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-03-20 15:42:35 +0000 |
| commit | 55ca1b6d3b10ac3927d5f69b8a4c820df7c5f58d (patch) | |
| tree | 427946fe3b7fe80ebf28e8e9d01d1d5dfa9b6c7c /fml/libexec | |
| parent | 96adfba6729e0b143a513257ecced1dd3fa24837 (diff) | |
| download | fml8-55ca1b6d3b10ac3927d5f69b8a4c820df7c5f58d.tar.gz fml8-55ca1b6d3b10ac3927d5f69b8a4c820df7c5f58d.tar.bz2 fml8-55ca1b6d3b10ac3927d5f69b8a4c820df7c5f58d.zip | |
add /usr/local/libexec/fml to @INC
Diffstat (limited to 'fml/libexec')
| -rwxr-xr-x | fml/libexec/loader | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fml/libexec/loader b/fml/libexec/loader index 7d572642..1f3c5ddd 100755 --- a/fml/libexec/loader +++ b/fml/libexec/loader @@ -4,7 +4,7 @@ # Copyright (C) 2000-2001 Ken'ichi Fukamachi # All rights reserved. # -# $Id: loader,v 1.12 2001/02/17 14:39:16 fukachan Exp $ +# $Id: loader,v 1.13 2001/03/09 04:24:41 fukachan Exp $ # $FML$ # @@ -25,8 +25,11 @@ exit 0; # Firstly we load Standalone.pm which has main.cf parser(). +# XXX we should remove the last resort '/usr/local/libexec/fml'; +# XXX which is not always true. BEGIN { use File::Basename; + unshift(@INC, '/usr/local/libexec/fml'); unshift(@INC, dirname($0)); require Standalone; } |
