diff options
author | Mika Westerberg <mika.westerberg@iki.fi> | 2009-02-11 17:38:07 +0200 |
---|---|---|
committer | Lauri Leukkunen <lle@rahina.org> | 2009-02-16 11:50:38 +0200 |
commit | 2eff90e1a530f30e29bac47196ad5a0b86640f01 (patch) | |
tree | b3dfc3178271add91ff1d4995c311807973c3ef4 /lua_scripts | |
parent | bcba4d20d1f3fbd1e78b386384b04f32724111c8 (diff) |
Bugfix: Host perl/python libraries are mapped to host.
Signed-off-by: Lauri Aarnio <Lauri.Aarnio@iki.fi>
Diffstat (limited to 'lua_scripts')
-rw-r--r-- | lua_scripts/pathmaps/devel/00_default.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lua_scripts/pathmaps/devel/00_default.lua b/lua_scripts/pathmaps/devel/00_default.lua index 1426520..c6a0d1c 100644 --- a/lua_scripts/pathmaps/devel/00_default.lua +++ b/lua_scripts/pathmaps/devel/00_default.lua @@ -155,6 +155,8 @@ perl_lib_test = { map_to = tools, readonly = true }, { if_active_exec_policy_is = "Rootstrap", map_to = target_root, readonly = true }, + { if_active_exec_policy_is = "Host", + use_orig_path = true, readonly = true }, { map_to = target_root, readonly = true } } @@ -189,6 +191,8 @@ python_lib_test = { map_to = tools, readonly = true }, { if_active_exec_policy_is = "Rootstrap", map_to = target_root, readonly = true }, + { if_active_exec_policy_is = "Host", + use_orig_path = true, readonly = true }, { map_to = target_root, readonly = true } } |