From 2772869fa806682a226ed9fdf6075aa6960b3dd5 Mon Sep 17 00:00:00 2001 From: Kees Cook Date: Wed, 13 Oct 2010 13:22:45 -0700 Subject: [PATCH] mk-sbuild: use --no-install-recommends on Debian too (Closes: 599699). --- debian/changelog | 5 ++++- mk-sbuild | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3c44e89..247293f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,7 +8,10 @@ ubuntu-dev-tools (0.105) UNRELEASED; urgency=low [ Naty Bidart ] * lp-project-upload: Add support handling multiple project series. - -- Siegfried-Angel Gevatter Pujals Sun, 26 Sep 2010 17:36:59 +0200 + [ Kees Cook ] + * mk-sbuild: use --no-install-recommends on Debian too (Closes: 599699). + + -- Kees Cook Wed, 13 Oct 2010 13:20:53 -0700 ubuntu-dev-tools (0.104) experimental; urgency=low diff --git a/mk-sbuild b/mk-sbuild index 60c2639..97485e6 100755 --- a/mk-sbuild +++ b/mk-sbuild @@ -367,6 +367,8 @@ debian) if [ "$RELEASE" = 'unstable' ] || [ "$RELEASE" = 'sid' ]; then SKIP_SECURITY=1 fi + # Keep the chroot as minimal as possible + BUILD_PKGS="--no-install-recommends $BUILD_PKGS" ;; *) echo "Unknown --distro '$DISTRO': aborting" >&2