diff options
author | Lauri Aarnio <lauri@bar.research.nokia.com> | 2009-01-06 15:36:14 +0200 |
---|---|---|
committer | Lauri Leukkunen <lle@rahina.org> | 2009-01-10 01:19:14 +0200 |
commit | 8f0dea439a4f5ee95e6986a11a6f28bd4a0a61f8 (patch) | |
tree | 62a9a2b01ef58d4de8766c3df546a5d58c3639d6 /lua_scripts | |
parent | 8171d8046e1385bc5f4d77bc664a6b49cc6c7ebb (diff) |
devel mode: more rules for directories under /usr/share
- fixed mapping of various files that came from packages debhelper, gnulib,
libltdl3-dev, libsndfile1-dev, xcb-proto, shared-mime-info
Diffstat (limited to 'lua_scripts')
-rw-r--r-- | lua_scripts/pathmaps/devel/00_default.lua | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lua_scripts/pathmaps/devel/00_default.lua b/lua_scripts/pathmaps/devel/00_default.lua index 8c9e53a..34420b1 100644 --- a/lua_scripts/pathmaps/devel/00_default.lua +++ b/lua_scripts/pathmaps/devel/00_default.lua @@ -213,6 +213,33 @@ devel_mode_rules_usr_share = { {prefix = "/usr/share/modest", map_to = target_root, readonly = true}, + -- for gnulib: + {dir = "/usr/share/gnulib", map_to = target_root, + readonly = true}, + + -- for libltdl3-dev: + {dir = "/usr/share/libtool/libltdl", map_to = target_root, + readonly = true}, + + -- for libsndfile1-dev: + {dir = "/usr/share/octave", map_to = target_root, + readonly = true}, + + -- for xcb-proto: + {dir = "/usr/share/xcb", map_to = target_root, + readonly = true}, + + -- for shared-mime-info: + {dir = "/usr/share/mime", map_to = target_root, + readonly = true}, + {path = "/usr/share/pkgconfig/shared-mime-info.pc", + map_to = target_root, readonly = true}, + + -- debhelper scripts, now from rootstrap (maping changed due to + -- upstart-dev's requirements) + {dir = "/usr/share/debhelper/autoscripts", + map_to = target_root, readonly = true}, + -- ----------------------------------------------- -- 100. DEFAULT RULES: {dir = "/usr/share", map_to = tools, readonly = true}, |