Update cpan-modules build and dependencies list.
This commit is contained in:
parent
c029d8604e
commit
bec81c96f0
3 changed files with 3 additions and 82 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
# Version: 0.6.11
|
||||
# Version: 0.6.12
|
||||
# Copyright (c) 2005-2022:
|
||||
# Darren 'Tadgy' Austin <darren (at) afterdark.org.uk>
|
||||
# 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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue