diff options
| author | fukachan <fukachan> | 2001-01-21 11:52:03 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-01-21 11:52:03 +0000 |
| commit | 2f7fc7a69f61f222bd00253c62b2b61dab5b562c (patch) | |
| tree | 2be7fb941561f6a5b5799a96d6b121910efa7a97 /fml/libexec/fmlwrapper | |
| parent | 1e4e015ad82ea78c273c2b667d6fe3fab6103eff (diff) | |
| download | fml8-2f7fc7a69f61f222bd00253c62b2b61dab5b562c.tar.gz fml8-2f7fc7a69f61f222bd00253c62b2b61dab5b562c.tar.bz2 fml8-2f7fc7a69f61f222bd00253c62b2b61dab5b562c.zip | |
fix @INC loading for debug
Diffstat (limited to 'fml/libexec/fmlwrapper')
| -rwxr-xr-x | fml/libexec/fmlwrapper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/libexec/fmlwrapper b/fml/libexec/fmlwrapper index 1837ed3b..8100e207 100755 --- a/fml/libexec/fmlwrapper +++ b/fml/libexec/fmlwrapper @@ -78,9 +78,9 @@ sub Bootstrap my $default_config = $my_default_config || $main_cf->{ default_config }; unshift(@cf, $default_config); - # 3. reset @INC - unshift(@INC, $main_cf->{ local_lib_dir }) if $main_cf->{ local_lib_dir }; - unshift(@INC, $main_cf->{ lib_dir }) if $main_cf->{ lib_dir }; + # 3. reset @INC + unshift(@INC, split(/\s+/, $main_cf->{ local_lib_dir })); + unshift(@INC, split(/\s+/, $main_cf->{ lib_dir })); # 4. inspect my mode from $0 use File::Basename; |
