makepkg: fix typo in dep array name
We fixed this up to check architecture specific sources in ec679e09b2
,
but fudged the array name in the in_array call.
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
d2d00e4543
commit
286dc83451
1 changed files with 1 additions and 1 deletions
|
@ -2925,7 +2925,7 @@ check_vcs_software() {
|
||||||
uninstalled="$(set +E; check_deps $client)" || exit 1
|
uninstalled="$(set +E; check_deps $client)" || exit 1
|
||||||
# if not installed, check presence in depends or makedepends
|
# if not installed, check presence in depends or makedepends
|
||||||
if [[ -n "$uninstalled" ]] && (( ! NODEPS || ( VERIFYSOURCE && !DEP_BIN ) )); then
|
if [[ -n "$uninstalled" ]] && (( ! NODEPS || ( VERIFYSOURCE && !DEP_BIN ) )); then
|
||||||
if ! in_array "$client" ${alldeps[@]}; then
|
if ! in_array "$client" ${all_deps[@]}; then
|
||||||
error "$(gettext "Cannot find the %s package needed to handle %s sources.")" \
|
error "$(gettext "Cannot find the %s package needed to handle %s sources.")" \
|
||||||
"$client" "${proto%%+*}"
|
"$client" "${proto%%+*}"
|
||||||
ret=1
|
ret=1
|
||||||
|
|
Loading…
Add table
Reference in a new issue