Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/amiga/conf Fix dependences and discard irrelevant "...



details:   https://anonhg.NetBSD.org/src/rev/636e37cdbca3
branches:  trunk
changeset: 471767:636e37cdbca3
user:      tron <tron%NetBSD.org@localhost>
date:      Sat Apr 10 21:36:26 1999 +0000

description:
Fix dependences and discard irrelevant "cpp" error message.

diffstat:

 sys/arch/amiga/conf/Makefile |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (40 lines):

diff -r b930247e9940 -r 636e37cdbca3 sys/arch/amiga/conf/Makefile
--- a/sys/arch/amiga/conf/Makefile      Sat Apr 10 21:23:27 1999 +0000
+++ b/sys/arch/amiga/conf/Makefile      Sat Apr 10 21:36:26 1999 +0000
@@ -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 @@
        @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 @@
        @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



Home | Main Index | Thread Index | Old Index