commit: 68ea4dcfcb973282c49c8cd186dc2cb57d3673a8 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org> AuthorDate: Thu Jan 12 22:54:28 2023 +0000 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org> CommitDate: Thu Jan 12 22:55:36 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68ea4dcf
net-misc/spiped: switch string cmp to POSIX sh Closes: https://bugs.gentoo.org/849329 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org> net-misc/spiped/files/spiped.initd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/spiped/files/spiped.initd b/net-misc/spiped/files/spiped.initd index 80a164c64999..ce94315c0a6a 100644 --- a/net-misc/spiped/files/spiped.initd +++ b/net-misc/spiped/files/spiped.initd @@ -21,7 +21,7 @@ depend() { } checkconfig() { - if [[ ! "$IS_CONFIGURED" == "yes" ]]; then + if [ ! "$IS_CONFIGURED" = "yes" ]; then eerror "You need to setup /etc/conf.d/spiped first!" return 1 fi