mk-sbuild-lv: don't install recommended packages during chroot install.

This commit is contained in:
Kees Cook 2008-06-13 10:11:15 -07:00
parent 793e6d2004
commit 0602459e02
2 changed files with 5 additions and 2 deletions

5
debian/changelog vendored
View File

@ -34,7 +34,10 @@ ubuntu-dev-tools (0.31) UNRELEASED; urgency=low
- post_bug: Catch IOError when setting bug importance (LP: #190061)
- mail_bug: Catch socket.error (LP: #190739)
-- Siegfried-Angel Gevatter Pujals (RainCT) <rainct@ubuntu.com> Wed, 16 Apr 2008 14:18:27 +0200
[ Kees Cook ]
* mk-sbuild-lv: don't install recommended packages during chroot install.
-- Kees Cook <kees@ubuntu.com> Fri, 13 Jun 2008 10:10:39 -0700
ubuntu-dev-tools (0.30) hardy; urgency=low

View File

@ -261,7 +261,7 @@ apt-get update || true
echo set debconf/frontend Noninteractive | debconf-communicate
echo set debconf/priority critical | debconf-communicate
# Install basic build tool set, trying to match buildd
apt-get -y install $BUILD_PKGS
apt-get -y --no-install-recommends install $BUILD_PKGS
# Set up expected /dev entries
if [ ! -r /dev/stdin ]; then ln -s /proc/self/fd/0 /dev/stdin; fi
if [ ! -r /dev/stdout ]; then ln -s /proc/self/fd/1 /dev/stdout; fi