diff options
| author | fukachan <fukachan> | 2001-01-19 14:50:28 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-01-19 14:50:28 +0000 |
| commit | ef01d3f38aa5dbd3971048105acf0f7bd1cdcb43 (patch) | |
| tree | 47eda5dfc08f65e85ed44c81a7a802ac2128be94 /fml/libexec | |
| parent | c35b9ccefadd1b5ed2ce6d491dc174966a201369 (diff) | |
| download | fml8-ef01d3f38aa5dbd3971048105acf0f7bd1cdcb43.tar.gz fml8-ef01d3f38aa5dbd3971048105acf0f7bd1cdcb43.tar.bz2 fml8-ef01d3f38aa5dbd3971048105acf0f7bd1cdcb43.zip | |
fix to update @INC
Diffstat (limited to 'fml/libexec')
| -rwxr-xr-x | fml/libexec/fmlwrapper | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fml/libexec/fmlwrapper b/fml/libexec/fmlwrapper index 33e0d8f1..d1741eca 100755 --- a/fml/libexec/fmlwrapper +++ b/fml/libexec/fmlwrapper @@ -63,7 +63,8 @@ sub Bootstrap } # 3. reset @INC - use lib qw( $config->{ local_lib_dir } $config->{ lib_dir }); + unshift(@INC, $config->{ local_lib_dir }); + unshift(@INC, $config->{ lib_dir }); # 4. inspect my mode from $0 use File::Basename; |
