diff options
author | Michael Smith <msmith@cbnco.com> | 2009-07-11 01:31:06 -0400 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2009-07-11 09:29:11 +0100 |
commit | f0d8b8301f8a3c9f8ef73b3d5a876d341b8b3370 (patch) | |
tree | 8ec5e5914cabd86521d6521027a3bfbd0aac8e5b /classes/package_tar.bbclass | |
parent | e206f3ea9217f3eb2343b2662cb92f5735962ed1 (diff) |
package classes: count dotfiles as non-empty
Allow a package to be built that contains only dotfiles or
dot directories under '/'.
Signed-off-by: Michael Smith <msmith@cbnco.com>
Diffstat (limited to 'classes/package_tar.bbclass')
-rw-r--r-- | classes/package_tar.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/package_tar.bbclass b/classes/package_tar.bbclass index 76f48ca429..cb70a5fae8 100644 --- a/classes/package_tar.bbclass +++ b/classes/package_tar.bbclass @@ -84,7 +84,7 @@ python do_package_tar () { tarfn = bb.data.getVar('PKGFN', localdata, 1) os.chdir(root) from glob import glob - if not glob('*'): + if not glob('*') + glob('.[!.]*'): bb.note("Not creating empty archive for %s-%s" % (pkg, bb.data.expand('${PV}-${PR}${DISTRO_PR}', d, True))) continue ret = os.system("tar -czf %s %s" % (tarfn, '.')) |