Update template.SlackBuild.
This commit is contained in:
parent
f17e3981e2
commit
c7b0af49b0
1 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Version: 0.6.11
|
# Version: 0.6.12
|
||||||
# Copyright (c) 2005-2022:
|
# Copyright (c) 2005-2022:
|
||||||
# Darren 'Tadgy' Austin <darren (at) afterdark.org.uk>
|
# Darren 'Tadgy' Austin <darren (at) afterdark.org.uk>
|
||||||
# Licensed under the terms of the GNU General Public License version 3.
|
# Licensed under the terms of the GNU General Public License version 3.
|
||||||
|
|
@ -79,10 +79,10 @@ done
|
||||||
(( ${BUILD_FORCE:-0} != 1 )) && {
|
(( ${BUILD_FORCE:-0} != 1 )) && {
|
||||||
while read -r PKG; do
|
while read -r PKG; do
|
||||||
check_installed "$PKG" && die "Conflicting package installed: $PKG"
|
check_installed "$PKG" && die "Conflicting package installed: $PKG"
|
||||||
done < <(printf "%s\\n" "${BUILD_CONFLICTS[@]}")
|
done < <(printf "%s " "${BUILD_CONFLICTS[@]}")
|
||||||
while read -r PKG; do
|
while read -r PKG; do
|
||||||
check_installed "$PKG" || die "Required package not installed: $PKG"
|
check_installed "$PKG" || die "Required package not installed: $PKG"
|
||||||
done < <(printf "%s\\n" "${BUILD_REQUIRES[@]}")
|
done < <(printf "%s " "${BUILD_REQUIRES[@]}")
|
||||||
}
|
}
|
||||||
|
|
||||||
# Gather some system information.
|
# Gather some system information.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue