mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-05-09 07:51:28 +00:00
mk-sbuild-lv: don't install recommended packages during chroot install.
This commit is contained in:
parent
793e6d2004
commit
0602459e02
5
debian/changelog
vendored
5
debian/changelog
vendored
@ -34,7 +34,10 @@ ubuntu-dev-tools (0.31) UNRELEASED; urgency=low
|
|||||||
- post_bug: Catch IOError when setting bug importance (LP: #190061)
|
- post_bug: Catch IOError when setting bug importance (LP: #190061)
|
||||||
- mail_bug: Catch socket.error (LP: #190739)
|
- 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
|
ubuntu-dev-tools (0.30) hardy; urgency=low
|
||||||
|
|
||||||
|
@ -261,7 +261,7 @@ apt-get update || true
|
|||||||
echo set debconf/frontend Noninteractive | debconf-communicate
|
echo set debconf/frontend Noninteractive | debconf-communicate
|
||||||
echo set debconf/priority critical | debconf-communicate
|
echo set debconf/priority critical | debconf-communicate
|
||||||
# Install basic build tool set, trying to match buildd
|
# 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
|
# Set up expected /dev entries
|
||||||
if [ ! -r /dev/stdin ]; then ln -s /proc/self/fd/0 /dev/stdin; fi
|
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
|
if [ ! -r /dev/stdout ]; then ln -s /proc/self/fd/1 /dev/stdout; fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user