diff options
| author | Koen Kooi <koen@openembedded.org> | 2008-10-06 12:49:05 +0000 |
|---|---|---|
| committer | Marcin Juszkiewicz <marcin@buglabs.net> | 2009-03-11 12:05:53 +0100 |
| commit | f94bd6b312b20c7c0c99c0874bb38887684fd8d6 (patch) | |
| tree | 93dd4e0c60cee06e9ef57d4ad2c768a2bdaa247f | |
| parent | 58ffd5a0ed288f9225cb82fd8cf1af30a4700bda (diff) | |
| download | poky-f94bd6b312b20c7c0c99c0874bb38887684fd8d6.tar.gz | |
package bbclass: add an 'allow_links' param to get symlinks packaged, usefull for splitting out libraries
| -rw-r--r-- | meta/classes/package.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index a714b08225..282315567f 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
| @@ -21,7 +21,7 @@ def legitimize_package_name(s): | |||
| 21 | # Remaining package name validity fixes | 21 | # Remaining package name validity fixes |
| 22 | return s.lower().replace('_', '-').replace('@', '+').replace(',', '+').replace('/', '-') | 22 | return s.lower().replace('_', '-').replace('@', '+').replace(',', '+').replace('/', '-') |
| 23 | 23 | ||
| 24 | def do_split_packages(d, root, file_regex, output_pattern, description, postinst=None, recursive=False, hook=None, extra_depends=None, aux_files_pattern=None, postrm=None, allow_dirs=False, prepend=False, match_path=False, aux_files_pattern_verbatim=None): | 24 | def do_split_packages(d, root, file_regex, output_pattern, description, postinst=None, recursive=False, hook=None, extra_depends=None, aux_files_pattern=None, postrm=None, allow_dirs=False, prepend=False, match_path=False, aux_files_pattern_verbatim=None, allow_links=False): |
| 25 | """ | 25 | """ |
| 26 | Used in .bb files to split up dynamically generated subpackages of a | 26 | Used in .bb files to split up dynamically generated subpackages of a |
| 27 | given package, usually plugins or modules. | 27 | given package, usually plugins or modules. |
| @@ -70,7 +70,7 @@ def do_split_packages(d, root, file_regex, output_pattern, description, postinst | |||
| 70 | continue | 70 | continue |
| 71 | f = os.path.join(dvar + root, o) | 71 | f = os.path.join(dvar + root, o) |
| 72 | mode = os.lstat(f).st_mode | 72 | mode = os.lstat(f).st_mode |
| 73 | if not (stat.S_ISREG(mode) or (allow_dirs and stat.S_ISDIR(mode))): | 73 | if not (stat.S_ISREG(mode) or (allow_links and stat.S_ISLNK(mode)) or (allow_dirs and stat.S_ISDIR(mode))): |
| 74 | continue | 74 | continue |
| 75 | on = legitimize_package_name(m.group(1)) | 75 | on = legitimize_package_name(m.group(1)) |
| 76 | pkg = output_pattern % on | 76 | pkg = output_pattern % on |
