aboutsummaryrefslogtreecommitdiff
path: root/pbuilder-satisfydepends
diff options
context:
space:
mode:
authordancer <dancer>2005-06-03 12:07:39 +0000
committerdancer <dancer>2005-06-03 12:07:39 +0000
commite342d18928b393c8d3d5c73324d7b5e49fc6ea74 (patch)
tree6066281270d49d66b77a057c1c37f119eee09b4b /pbuilder-satisfydepends
parenta8a89c869fe7d948479ee58bb7a793a34723cec0 (diff)
downloadpbuilder-e342d18928b393c8d3d5c73324d7b5e49fc6ea74.tar
pbuilder-e342d18928b393c8d3d5c73324d7b5e49fc6ea74.tar.gz
change to use experimental,
and apply patch; and apply my own patch.
Diffstat (limited to 'pbuilder-satisfydepends')
-rw-r--r--pbuilder-satisfydepends4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbuilder-satisfydepends b/pbuilder-satisfydepends
index e78a0ed..b153d7c 100644
--- a/pbuilder-satisfydepends
+++ b/pbuilder-satisfydepends
@@ -147,10 +147,10 @@ tolower($0) ~ /^'"${BD_REGEXP}"':/ {p=1}
# now actually install the packages
echo " -> Installing ${INSTALLPKGLIST}"
- if ! $CHROOTEXEC apt-get -y install ${INSTALLPKGLIST}; then
+ if ! $CHROOTEXEC apt-get -y --force-yes install ${INSTALLPKGLIST}; then
echo " -> Trying to fix apt error"
# Work around an apt bug which causes configure to fail.
- if $CHROOTEXEC dpkg --configure --pending && $CHROOTEXEC apt-get -y install ${INSTALLPKGLIST}; then
+ if $CHROOTEXEC dpkg --configure --pending && $CHROOTEXEC apt-get -y --force-yes install ${INSTALLPKGLIST}; then
echo " -> Apt bug workaround succeeded"
elif [ "$CONTINUE_FAIL" != "yes" ]; then
echo "E: Unrecoverable error installing build-dependencies." >&2