From 8396a3d898c685d88f123a98d08035a6533ed66f Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 16 Apr 2015 11:53:43 +0200 Subject: [PATCH] xbps-src: use xbps-query -i in the !chroot case; fixes -EN. --- xbps-src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbps-src b/xbps-src index f92b433f649..b950a53fa97 100755 --- a/xbps-src +++ b/xbps-src @@ -440,7 +440,7 @@ if [ -n "$IN_CHROOT" ]; then else readonly XBPS_UHELPER_CMD="xbps-uhelper -r $XBPS_MASTERDIR" readonly XBPS_INSTALL_CMD="xbps-install --repository=$XBPS_REPOSITORY -r $XBPS_MASTERDIR" - readonly XBPS_QUERY_CMD="xbps-query --repository=$XBPS_REPOSITORY -r $XBPS_MASTERDIR" + readonly XBPS_QUERY_CMD="xbps-query -i --repository=$XBPS_REPOSITORY -r $XBPS_MASTERDIR" readonly XBPS_RINDEX_CMD="xbps-rindex" readonly XBPS_RECONFIGURE_CMD="xbps-reconfigure -r $XBPS_MASTERDIR" readonly XBPS_REMOVE_CMD="xbps-remove -r $XBPS_MASTERDIR"