Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/x68k/conf Remove empty lines from cpp output since ...



details:   https://anonhg.NetBSD.org/src/rev/bd4b4218adab
branches:  trunk
changeset: 500669:bd4b4218adab
user:      itohy <itohy%NetBSD.org@localhost>
date:      Fri Dec 15 07:16:36 2000 +0000

description:
Remove empty lines from cpp output since make doesn't seem to like them.

diffstat:

 sys/arch/x68k/conf/Makefile.x68k |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 731fa5ada212 -r bd4b4218adab sys/arch/x68k/conf/Makefile.x68k
--- a/sys/arch/x68k/conf/Makefile.x68k  Fri Dec 15 06:49:19 2000 +0000
+++ b/sys/arch/x68k/conf/Makefile.x68k  Fri Dec 15 07:16:36 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.x68k,v 1.46 2000/11/13 14:47:14 minoura Exp $
+#      $NetBSD: Makefile.x68k,v 1.47 2000/12/15 07:16:36 itohy Exp $
 
 # Makefile for NetBSD
 #
@@ -54,7 +54,7 @@
                  echo '\#else';                        \
                  echo '0';                             \
                  echo '\#endif' )                      \
-                       | ${CPP} | grep -v '^\#'
+                       | ${CPP} | sed -e '/^\#/d' -e '/^$$/d'
 .if ${M68060}
 CMACHFLAGS=    -m68020-60 -Wa,-m68030 -Wa,-m68851
 .else



Home | Main Index | Thread Index | Old Index