aboutsummaryrefslogtreecommitdiffstats
path: root/classes/package.bbclass
diff options
context:
space:
mode:
authorMichael Smith <msmith@cbnco.com>2009-07-11 01:31:06 -0400
committerPhil Blundell <philb@gnu.org>2009-07-11 09:29:11 +0100
commitf0d8b8301f8a3c9f8ef73b3d5a876d341b8b3370 (patch)
tree8ec5e5914cabd86521d6521027a3bfbd0aac8e5b /classes/package.bbclass
parente206f3ea9217f3eb2343b2662cb92f5735962ed1 (diff)
downloadopenembedded-f0d8b8301f8a3c9f8ef73b3d5a876d341b8b3370.tar.gz
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.bbclass')
-rw-r--r--classes/package.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass
index 3360dcb2de..f6bd7c5b4a 100644
--- a/classes/package.bbclass
+++ b/classes/package.bbclass
@@ -539,7 +539,7 @@ python emit_pkgdata() {
allow_empty = bb.data.getVar('ALLOW_EMPTY', d, 1)
root = "%s/install/%s" % (workdir, pkg)
os.chdir(root)
- g = glob('*')
+ g = glob('*') + glob('.[!.]*')
if g or allow_empty == "1":
packagedfile = pkgdatadir + '/runtime/%s.packaged' % pkg
file(packagedfile, 'w').close()