summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2023-01-12 23:54:28 +0100
committerPatrice Clement <monsieurp@gentoo.org>2023-01-12 23:55:36 +0100
commit68ea4dcfcb973282c49c8cd186dc2cb57d3673a8 (patch)
tree5f4b4ea2dc8d0492fae98f8e192cc9de58c64504
parentgames-emulation/pcsx2: cleanup unused perl bdep (diff)
downloadgentoo-68ea4dcf.tar.gz
gentoo-68ea4dcf.tar.bz2
gentoo-68ea4dcf.zip
net-misc/spiped: switch string cmp to POSIX sh
Closes: https://bugs.gentoo.org/849329 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
-rw-r--r--net-misc/spiped/files/spiped.initd2
1 files changed, 1 insertions, 1 deletions
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