summaryrefslogtreecommitdiff
path: root/fml/libexec
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-01-19 14:50:28 +0000
committerfukachan <fukachan>2001-01-19 14:50:28 +0000
commitef01d3f38aa5dbd3971048105acf0f7bd1cdcb43 (patch)
tree47eda5dfc08f65e85ed44c81a7a802ac2128be94 /fml/libexec
parentc35b9ccefadd1b5ed2ce6d491dc174966a201369 (diff)
downloadfml8-ef01d3f38aa5dbd3971048105acf0f7bd1cdcb43.tar.gz
fml8-ef01d3f38aa5dbd3971048105acf0f7bd1cdcb43.tar.bz2
fml8-ef01d3f38aa5dbd3971048105acf0f7bd1cdcb43.zip
fix to update @INC
Diffstat (limited to 'fml/libexec')
-rwxr-xr-xfml/libexec/fmlwrapper3
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;