From: Lars Wendler Date: Sat, 11 May 2019 18:58:20 +0000 (+0200) Subject: x11-apps/radeon-profile-daemon: sleep only accepts integers in POSIX mode X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=6646627db068904979e4eaba819e2e0c453c4f4c;p=gentoo.git x11-apps/radeon-profile-daemon: sleep only accepts integers in POSIX mode Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Lars Wendler --- diff --git a/x11-apps/radeon-profile-daemon/files/radeon-profile-daemon.initd b/x11-apps/radeon-profile-daemon/files/radeon-profile-daemon.initd index e67b9843c25d..adbc0195e4b0 100644 --- a/x11-apps/radeon-profile-daemon/files/radeon-profile-daemon.initd +++ b/x11-apps/radeon-profile-daemon/files/radeon-profile-daemon.initd @@ -15,7 +15,7 @@ wait_for_socket() { while [ ${i} -lt 10 ]; do [ -S "${radeon_socket}" ] && return 0 i=$((${i}+1)) - sleep 1s + sleep 1 done return 1