From c2bd5f1e8d5c3b65d572ecab5353cffe2f8cb350 Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Sun, 11 Jul 2004 09:44:00 +0000 Subject: [PATCH] Avoid illegal dash (-) in cpp architecture defines. Patch from Colin Watson. --- Makefile | 4 ++-- debian/changelog | 2 ++ tools/generate_di_list | 5 +++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 7c117c99..dd64a592 100755 --- a/Makefile +++ b/Makefile @@ -371,7 +371,7 @@ endif | tr ' ' '\n' >>$(BDIR)/rawlist; \ fi $(Q)perl -npe 's/\@ARCH\@/$(ARCH)/g' $(TASK) | \ - cpp -nostdinc -nostdinc++ -P -undef -D ARCH=$(ARCH) -D ARCH_$(ARCH) \ + cpp -nostdinc -nostdinc++ -P -undef -D ARCH=$(ARCH) -D ARCH_$(subst -,_,$(ARCH)) \ -U $(ARCH) -U i386 -U linux -U unix \ -DFORCENONUSONCD1=$(forcenonusoncd1) \ -I $(BASEDIR)/tasks -I $(BDIR) - - >> $(BDIR)/rawlist @@ -380,7 +380,7 @@ endif $(BDIR)/rawlist-exclude: $(Q)if [ -n "$(EXCLUDE)" ]; then \ perl -npe 's/\@ARCH\@/$(ARCH)/g' $(EXCLUDE) | \ - cpp -nostdinc -nostdinc++ -P -undef -D ARCH=$(ARCH) -D ARCH_$(ARCH) \ + cpp -nostdinc -nostdinc++ -P -undef -D ARCH=$(ARCH) -D ARCH_$(subst -,_,$(ARCH)) \ -U $(ARCH) -U i386 -U linux -U unix \ -DFORCENONUSONCD1=$(forcenonusoncd1) \ -I $(BASEDIR)/tasks -I $(BDIR) - - >> $(BDIR)/rawlist-exclude; \ diff --git a/debian/changelog b/debian/changelog index dc940f64..e970a913 100644 --- a/debian/changelog +++ b/debian/changelog @@ -72,6 +72,8 @@ debian-cd (2.2.18) UNRELEASED; urgency=low - Make it possible to change which images to build using CONF.sh. - Use DI_CODENAME to locate the installation system. This make it possible to use debian-installer with Woody CDs. + - Avoid illegal dash (-) in cpp architecture defines. Patch + from Colin Watson. * Stephen R. Marenka - Update m68k support for sarge. - Fix m68k/amiga icons. diff --git a/tools/generate_di_list b/tools/generate_di_list index c9e4b0f7..9b6a3246 100755 --- a/tools/generate_di_list +++ b/tools/generate_di_list @@ -20,7 +20,8 @@ EOF my @common_excludes = read_exclude("exclude-udebs"); foreach my $arch (@ARCHES) { - print OUT "#ifdef ARCH_$arch\n"; + (my $cpparch = $arch) =~ s/-/_/g; + print OUT "#ifdef ARCH_$cpparch\n"; my @exclude = @common_excludes; push @exclude, read_exclude("exclude-udebs-$arch") if -e exclude_path("exclude-udebs-$arch"); @@ -33,7 +34,7 @@ UDEB: foreach my $udeb (map { chomp; $_ } `grep-dctrl -n -s Package '' $packagef } print OUT "$udeb\n"; } - print OUT "#endif /* ARCH_$arch */\n"; + print OUT "#endif /* ARCH_$cpparch */\n"; } sub read_exclude {