diff options
| author | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-07-31 01:41:16 +0200 |
|---|---|---|
| committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-07-31 01:41:16 +0200 |
| commit | 87e71a8da123ca7af82ad467fa8038b9a157c2b2 (patch) | |
| tree | 89ecc0e884e592ab6570d865541511ce1fdb611b /classes/package.bbclass | |
| parent | 48a208b2ad3fc088dffd3af0b5bfc424eadf932f (diff) | |
| parent | b73732a25fc76df6934479fd3ece5888c5888dcd (diff) | |
Merge branch 'org.openembedded.dev' of git@git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'classes/package.bbclass')
| -rw-r--r-- | classes/package.bbclass | 2 |
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() |
