diff options
author | Andreas Müller <schnitzeltony@googlemail.com> | 2014-04-10 20:07:48 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-23 11:41:03 +0100 |
commit | 33c7892326de296cc6d143577be5b395ac887d91 (patch) | |
tree | 1a7b2a0e20e217d3c9b5a5279fb98499c699fba3 /meta/recipes-extended | |
parent | 413fc934fadbd3603b7f78dfd3cc0ac83bb0377f (diff) | |
download | openembedded-core-33c7892326de296cc6d143577be5b395ac887d91.tar.gz openembedded-core-33c7892326de296cc6d143577be5b395ac887d91.tar.bz2 openembedded-core-33c7892326de296cc6d143577be5b395ac887d91.zip |
shadow: fix building systemd with useradd-staticids.bbclass enabled
| groupadd: 'systemd-journal-gateway' is not a valid group name
Without useradd-staticids enabled, group 'systemd-journal-gateway' is created
by useradd and that seems not to care for GROUP_NAME_MAX_LENGTH which has 16 by
default.
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/shadow/shadow.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/shadow/shadow.inc b/meta/recipes-extended/shadow/shadow.inc index d6bf73b591..a4e9634a56 100644 --- a/meta/recipes-extended/shadow/shadow.inc +++ b/meta/recipes-extended/shadow/shadow.inc @@ -60,6 +60,7 @@ inherit autotools gettext EXTRA_OECONF += "--without-audit \ --without-libcrack \ --without-selinux \ + --with-group-name-max-length=24 \ ${NSCDOPT}" NSCDOPT = "" |