From a46520a7fdfd0ba0ae54150b217f702fe4b5c37e Mon Sep 17 00:00:00 2001 From: Steve McIntyre <93sam@debian.org> Date: Thu, 30 Nov 2006 21:50:29 +0000 Subject: [PATCH] Remove sh from the arch list in generate_di_list, to make builds quieter --- debian/changelog | 3 +++ tools/generate_di_list | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b177f713..7f6b24db 100644 --- a/debian/changelog +++ b/debian/changelog @@ -93,6 +93,9 @@ debian-cd (2.2.26) UNRELEASED; urgency=low * build.sh: Don't force IMAGETARGET to bin-official_images when NOSOURCE is set, if IMAGETARGET is also already set, as in a kde cd build. + [ Steve McIntyre ] + * Remove sh from the arch list in generate_di_list, to make builds quieter. + -- Joey Hess Wed, 29 Nov 2006 17:56:56 -0500 debian-cd (2.2.25) unstable; urgency=low diff --git a/tools/generate_di_list b/tools/generate_di_list index a01dbc26..63b803e3 100755 --- a/tools/generate_di_list +++ b/tools/generate_di_list @@ -7,7 +7,7 @@ die "Missing \$DI_CODENAME variable" unless $ENV{DI_CODENAME}; die "Missing \$BASEDIR variable" unless $ENV{BASEDIR}; my @ARCHES=qw{alpha arm hppa hurd-i386 i386 ia64 m68k mips mipsel - powerpc s390 sparc sh amd64}; + powerpc s390 sparc amd64}; my $DATE=`date`; chomp $DATE; open(OUT, ">debian-installer-$ENV{DI_CODENAME}") || die "write: $!";