Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/m68k Make comments are not C comments - use # inste...



details:   https://anonhg.NetBSD.org/src/rev/9f9453758ea0
branches:  trunk
changeset: 947528:9f9453758ea0
user:      martin <martin%NetBSD.org@localhost>
date:      Tue Dec 15 05:48:30 2020 +0000

description:
Make comments are not C comments - use # instead of /* ... */

diffstat:

 sys/arch/m68k/Makefile.cmachflags |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r 7d5295448ce2 -r 9f9453758ea0 sys/arch/m68k/Makefile.cmachflags
--- a/sys/arch/m68k/Makefile.cmachflags Tue Dec 15 01:23:55 2020 +0000
+++ b/sys/arch/m68k/Makefile.cmachflags Tue Dec 15 05:48:30 2020 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.cmachflags,v 1.2 2010/07/12 02:45:31 mrg Exp $
+#      $NetBSD: Makefile.cmachflags,v 1.3 2020/12/15 05:48:30 martin Exp $
 
 # Set CMACHFLAGS best target the specific CPU combination, based on
 # their "options" setting.
@@ -45,11 +45,11 @@
 .elif ${HAVE_M68040} != "no"
 . if ${HAVE_M68020} != "no" || ${HAVE_M68030} != "no"
 CMACHFLAGS=    -m68020-40
-. else /* !-DM68060 */
+. else # !-DM68060
 CMACHFLAGS=    -m68040
 . endif
 .elif ${HAVE_M68020} != "no"
 CMACHFLAGS=    -m68020
 .else
 CMACHFLAGS=    -m68030
-.endif /* !-DM68060 */
+.endif # !-DM68060



Home | Main Index | Thread Index | Old Index