diff options
author | Loïc Minier <lool@dooz.org> | 2007-04-11 08:05:16 +0200 |
---|---|---|
committer | Loïc Minier <lool@dooz.org> | 2007-04-11 08:05:16 +0200 |
commit | 4a3531d57e087302c27754010752604102f2ebdb (patch) | |
tree | 3b85f976264f83c5b535d5e66b7b589f28a35d8d /pbuilder-satisfydepends-aptitude | |
parent | 9046dee07371abe268193e9c5e3df478a9f5794d (diff) | |
download | pbuilder-4a3531d57e087302c27754010752604102f2ebdb.tar pbuilder-4a3531d57e087302c27754010752604102f2ebdb.tar.gz |
* Pass -o Aptitude::CmdLine::Ignore-Trust-Violations=true to aptitude; thanks
Daniel Burrows for the pointed.
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 14d50de..c0ae0ad 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 install pbuilder-satisfydepends-dummy + $CHROOTEXEC aptitude -y -o Aptitude::CmdLine::Ignore-Trust-Violations=true 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" |