From 7be185347ae217d06e5de8eb42d6904027b7df87 Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 10 Apr 1999 21:36:26 +0000 Subject: [PATCH] Fix dependences and discard irrelevant "cpp" error message. --- sys/arch/amiga/conf/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sys/arch/amiga/conf/Makefile b/sys/arch/amiga/conf/Makefile index 66159e535fd8..3ec5dcdc6169 100644 --- a/sys/arch/amiga/conf/Makefile +++ b/sys/arch/amiga/conf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 1999/03/09 15:14:32 is Exp $ +# $NetBSD: Makefile,v 1.4 1999/04/10 21:36:26 tron Exp $ # # Use this file to regenerate AMIGA and DRACO out of the GENERIC template. @@ -6,7 +6,7 @@ all: AMIGA DRACO -AMIGA: +AMIGA: GENERIC @echo -n '# '$$ > $@ @echo NetBSD$$ >> $@ @echo '#' >> $@ @@ -15,10 +15,10 @@ AMIGA: @echo '#' >> $@ @echo '# Created from: ' >> $@ @sed -e '1s/NetBSD/ NetBSD/' GENERIC |\ - cpp -undef -P -DAMIGA_CONFIGURATION |\ + cpp -undef -P -DAMIGA_CONFIGURATION 2>/dev/null |\ awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@ -DRACO: +DRACO: GENERIC @echo -n '# '$$ > $@ @echo NetBSD$$ >> $@ @echo '#' >> $@ @@ -27,7 +27,7 @@ DRACO: @echo '#' >> $@ @echo '# Created from: ' >> $@ @sed -e '1s/NetBSD/ NetBSD/' GENERIC |\ - cpp -undef -P -DDRACO_CONFIGURATION |\ + cpp -undef -P -DDRACO_CONFIGURATION 2>/dev/null |\ awk '{if (NF>1)count=0;else count++;if(count<=1)print}' >> $@ AMIGA DRACO: GENERIC Makefile