diff --git a/source/pyinotify/pyinotify.SlackBuild b/source/pyinotify/pyinotify.SlackBuild index ba58a96..a7cde7d 100755 --- a/source/pyinotify/pyinotify.SlackBuild +++ b/source/pyinotify/pyinotify.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.