diff options
author | dancer <dancer> | 2005-12-04 04:36:28 +0000 |
---|---|---|
committer | dancer <dancer> | 2005-12-04 04:36:28 +0000 |
commit | c083f6c7fc979dc0a9cb45e687e56360621d4cf5 (patch) | |
tree | d9f1022ca700985326b97673a60ec5ac5ff3c497 /pbuilder-buildpackage-funcs | |
parent | 99fe31b0e9686d8502e70f80d710f555cf19e5d8 (diff) | |
download | pbuilder-c083f6c7fc979dc0a9cb45e687e56360621d4cf5.tar pbuilder-c083f6c7fc979dc0a9cb45e687e56360621d4cf5.tar.gz |
* Bug fix: "/usr/share/doc/pbuilder/examples/B90linda missing
--allow-unauthenticated option", thanks to qfunk (Closes: #340715).
- fixed other scripts to use --allow-unauthenticated option rather than --force-yes.
* debconf compatibility level 4
Diffstat (limited to 'pbuilder-buildpackage-funcs')
-rw-r--r-- | pbuilder-buildpackage-funcs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pbuilder-buildpackage-funcs b/pbuilder-buildpackage-funcs index 5965c83..1446b21 100644 --- a/pbuilder-buildpackage-funcs +++ b/pbuilder-buildpackage-funcs @@ -50,7 +50,7 @@ function checkbuilddep () { fi # install extra packages to the chroot if [ -n "$EXTRAPACKAGES" ]; then - $CHROOTEXEC usr/bin/apt-get -y --force-yes install ${EXTRAPACKAGES} + $CHROOTEXEC usr/bin/apt-get -y --allow-unauthenticated install ${EXTRAPACKAGES} fi } |