diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-22 12:35:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-23 22:35:01 +0000 |
commit | c907ea3246abc742dc7cf7e010b7c5c32c46a84f (patch) | |
tree | d6e9869cbeb921a83e51ba677f690dd26029b92d | |
parent | 2d2f017240cd2f0ee02635cf0a7d2a612b946ac1 (diff) | |
download | poky-c907ea3246abc742dc7cf7e010b7c5c32c46a84f.tar.gz |
rsync: Fix group name determinism issue
configure falls back to inspecting the host#s /etc/group for the
nobody/nogroup naming. Pass the correct value to configure to
ensure host differences don't sneak in.
(From OE-Core rev: e5f809068b32df32e506f3067cd6086195e03f12)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/rsync/rsync_3.2.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rsync/rsync_3.2.3.bb b/meta/recipes-devtools/rsync/rsync_3.2.3.bb index c08f93884f..eebd15ec8f 100644 --- a/meta/recipes-devtools/rsync/rsync_3.2.3.bb +++ b/meta/recipes-devtools/rsync/rsync_3.2.3.bb | |||
@@ -39,7 +39,7 @@ PACKAGECONFIG[zstd] = "--enable-zstd,--disable-zstd,zstd" | |||
39 | CACHED_CONFIGUREVARS += "rsync_cv_can_hardlink_special=yes rsync_cv_can_hardlink_symlink=yes" | 39 | CACHED_CONFIGUREVARS += "rsync_cv_can_hardlink_special=yes rsync_cv_can_hardlink_symlink=yes" |
40 | 40 | ||
41 | EXTRA_OEMAKE = 'STRIP=""' | 41 | EXTRA_OEMAKE = 'STRIP=""' |
42 | EXTRA_OECONF = "--disable-simd --disable-md2man --disable-asm" | 42 | EXTRA_OECONF = "--disable-simd --disable-md2man --disable-asm --with-nobody-group=nogroup" |
43 | 43 | ||
44 | # rsync 3.0 uses configure.sh instead of configure, and | 44 | # rsync 3.0 uses configure.sh instead of configure, and |
45 | # makefile checks the existence of configure.sh | 45 | # makefile checks the existence of configure.sh |