diff options
author | dancer <dancer> | 2005-06-03 12:07:39 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-06-03 12:07:39 +0000 |
commit | e342d18928b393c8d3d5c73324d7b5e49fc6ea74 (patch) | |
tree | 6066281270d49d66b77a057c1c37f119eee09b4b /pbuilder-satisfydepends | |
parent | a8a89c869fe7d948479ee58bb7a793a34723cec0 (diff) | |
download | pbuilder-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-satisfydepends | 4 |
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 |