From f09333fe4a8deba38fea091d437aa8e364d42e51 Mon Sep 17 00:00:00 2001 From: Darren 'Tadgy' Austin Date: Tue, 11 Oct 2022 00:54:07 +0100 Subject: [PATCH] Update iotop build. --- source/iotop/iotop.SlackBuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/iotop/iotop.SlackBuild b/source/iotop/iotop.SlackBuild index 1b51689..dc1beea 100755 --- a/source/iotop/iotop.SlackBuild +++ b/source/iotop/iotop.SlackBuild @@ -1,5 +1,5 @@ #!/bin/bash -# Version: 0.6.11 +# Version: 0.6.12 # Copyright (c) 2005-2022: # Darren 'Tadgy' Austin # Licensed under the terms of the GNU General Public License version 3. @@ -79,10 +79,10 @@ done (( ${BUILD_FORCE:-0} != 1 )) && { while read -r PKG; do check_installed "$PKG" && die "Conflicting package installed: $PKG" - done < <(printf "%s\\n" "${BUILD_CONFLICTS[@]}") + done < <(printf "%s " "${BUILD_CONFLICTS[@]}") while read -r PKG; do check_installed "$PKG" || die "Required package not installed: $PKG" - done < <(printf "%s\\n" "${BUILD_REQUIRES[@]}") + done < <(printf "%s " "${BUILD_REQUIRES[@]}") } # Gather some system information.