diff options
author | Juan RP <xtraeme@gmail.com> | 2019-12-15 17:53:04 +0000 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2019-12-15 17:53:04 +0000 |
commit | f7412cdf8dedf838a3dc7c7c172813a48abf5ce9 (patch) | |
tree | d426bb95986dda6a618ae14ac104f1feb6a60008 | |
parent | dd26a0ea6205ef9109797a09d7bdacdaf50535dd (diff) | |
download | void-packages-f7412cdf8dedf838a3dc7c7c172813a48abf5ce9.tar void-packages-f7412cdf8dedf838a3dc7c7c172813a48abf5ce9.tar.gz void-packages-f7412cdf8dedf838a3dc7c7c172813a48abf5ce9.tar.bz2 void-packages-f7412cdf8dedf838a3dc7c7c172813a48abf5ce9.tar.lz void-packages-f7412cdf8dedf838a3dc7c7c172813a48abf5ce9.tar.xz void-packages-f7412cdf8dedf838a3dc7c7c172813a48abf5ce9.tar.zst void-packages-f7412cdf8dedf838a3dc7c7c172813a48abf5ce9.zip |
xbps-src: don't set -i to xbps-install(1).
As reported by @pullmoll via https://github.com/void-linux/xbps/issues/190
the culprit is this assignment, rather than in the xbps code.
Tested with local and remote repos, no regressions found.
-rw-r--r-- | common/xbps-src/shutils/build_dependencies.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/xbps-src/shutils/build_dependencies.sh b/common/xbps-src/shutils/build_dependencies.sh index 95403c97bf1..1c25da38dc6 100644 --- a/common/xbps-src/shutils/build_dependencies.sh +++ b/common/xbps-src/shutils/build_dependencies.sh @@ -71,7 +71,7 @@ install_pkg_from_repos() { cmd=$XBPS_INSTALL_CMD [[ $cross ]] && cmd=$XBPS_INSTALL_XCMD - $cmd ${XBPS_SKIP_REMOTEREPOS:+-i} -AIy "$@" >$tmplogf 2>&1 + $cmd -AIy "$@" >$tmplogf 2>&1 rval=$? case "$rval" in |