Remove sh from the arch list in generate_di_list, to make builds quieter

This commit is contained in:
Steve McIntyre 2006-11-30 21:50:29 +00:00
parent 6dc383b0df
commit a46520a7fd
2 changed files with 4 additions and 1 deletions

3
debian/changelog vendored
View File

@ -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 <joeyh@debian.org> Wed, 29 Nov 2006 17:56:56 -0500
debian-cd (2.2.25) unstable; urgency=low

View File

@ -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: $!";