From ee55b1081eb82f37fa9e6cde252b7ec8aeb0fef1 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 6 May 2015 11:21:26 +0200 Subject: [PATCH] xbps-src: fix regression: -I does not remove autodeps. --- xbps-src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xbps-src b/xbps-src index 96b473f1b3..0b81399f8d 100755 --- a/xbps-src +++ b/xbps-src @@ -622,7 +622,7 @@ case "$XBPS_TARGET" in if [ -n "$CHROOT_READY" -a -z "$IN_CHROOT" ]; then chroot_handler $XBPS_TARGET $XBPS_TARGET_PKG else - [ -z "$XBPS_KEEP_ALL" ] && remove_pkg_autodeps + [ -z "$XBPS_KEEP_ALL" -a -z "$XBPS_SKIP_DEPS" ] && remove_pkg_autodeps $XBPS_LIBEXECDIR/build.sh $XBPS_TARGET_PKG $XBPS_TARGET_PKG \ $XBPS_TARGET $XBPS_CROSS_BUILD || exit $? fi