]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
Revert "coreutils-native: don't install groups"
authorPeter Kjellerstedt <pkj@axis.com>
Wed, 10 Sep 2025 19:17:42 +0000 (21:17 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 15 Sep 2025 16:52:52 +0000 (17:52 +0100)
This reverts commit 113225b93c55d55a330fcca7d9f996ec039fb953.

The groups command was previously installed by shadow. Therefore the
one provided by coreutils was removed for native to avoid a conflict.
However, since version 4.17.0, shadow no longer installs a groups
command and thus there is no conflict anymore.

Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/coreutils/coreutils_9.7.bb

index 3658f7100cd7e291b1720529b153b9d5bc61f8ca..201be4144ce7d2e3e97f50d2a21213c087bc42e9 100644 (file)
@@ -82,10 +82,8 @@ do_compile:prepend () {
 
 do_install:class-native() {
        autotools_do_install
-       # remove groups to fix conflict with shadow-native
-       rm -f ${D}${STAGING_BINDIR_NATIVE}/groups
        # The return is a must since native doesn't need the
-       # do_install:append() in the below.
+       # do_install:append() below.
        return
 }