diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2023-01-12 23:54:28 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2023-01-12 23:55:36 +0100 |
commit | 68ea4dcfcb973282c49c8cd186dc2cb57d3673a8 (patch) | |
tree | 5f4b4ea2dc8d0492fae98f8e192cc9de58c64504 /net-misc/spiped | |
parent | games-emulation/pcsx2: cleanup unused perl bdep (diff) | |
download | gentoo-68ea4dcfcb973282c49c8cd186dc2cb57d3673a8.tar.gz gentoo-68ea4dcfcb973282c49c8cd186dc2cb57d3673a8.tar.bz2 gentoo-68ea4dcfcb973282c49c8cd186dc2cb57d3673a8.zip |
net-misc/spiped: switch string cmp to POSIX sh
Closes: https://bugs.gentoo.org/849329
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'net-misc/spiped')
-rw-r--r-- | net-misc/spiped/files/spiped.initd | 2 |
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 |