diff options
author | Loïc Minier <lool@dooz.org> | 2007-04-29 00:24:38 +0200 |
---|---|---|
committer | Loïc Minier <lool@dooz.org> | 2007-04-29 00:24:38 +0200 |
commit | e5894273263f9bdc6ca851d8aee88acac833f74e (patch) | |
tree | d53b36c11c73a5059907dc9b9cca17216137b2fd /pbuilder-satisfydepends-aptitude | |
parent | 169a7e7a6138e3e435e40772cd784994aebd09b9 (diff) | |
download | pbuilder-e5894273263f9bdc6ca851d8aee88acac833f74e.tar pbuilder-e5894273263f9bdc6ca851d8aee88acac833f74e.tar.gz |
* Pass --without-recommends to aptitude.
Diffstat (limited to 'pbuilder-satisfydepends-aptitude')
-rwxr-xr-x | pbuilder-satisfydepends-aptitude | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-satisfydepends-aptitude b/pbuilder-satisfydepends-aptitude index af08796..5ae27e8 100755 --- a/pbuilder-satisfydepends-aptitude +++ b/pbuilder-satisfydepends-aptitude @@ -86,7 +86,7 @@ EOF $CHROOTEXEC sh -c "dpkg-deb -b \"$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy\"" $CHROOTEXEC apt-get -y --force-yes install aptitude $CHROOTEXEC dpkg -i "$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy.deb" || true - $CHROOTEXEC aptitude -y -o Aptitude::CmdLine::Ignore-Trust-Violations=true -o Aptitude::ProblemResolver::StepScore=100 install pbuilder-satisfydepends-dummy + $CHROOTEXEC aptitude -y --without-recommends -o Aptitude::CmdLine::Ignore-Trust-Violations=true -o Aptitude::ProblemResolver::StepScore=100 install pbuilder-satisfydepends-dummy # check whether the aptitude's resolver kept the package if ! $CHROOTEXEC dpkg -l pbuilder-satisfydepends-dummy 2>/dev/null | grep -q ^ii; then echo "Aptitude couldn't satisfy the build dependencies" |