Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/config Correct inverted logic.



details:   https://anonhg.NetBSD.org/src/rev/fc47b87eed27
branches:  trunk
changeset: 802935:fc47b87eed27
user:      uebayasi <uebayasi%NetBSD.org@localhost>
date:      Thu Oct 09 17:22:55 2014 +0000

description:
Correct inverted logic.

diffstat:

 usr.bin/config/mkmakefile.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 434b8eef5c5d -r fc47b87eed27 usr.bin/config/mkmakefile.c
--- a/usr.bin/config/mkmakefile.c       Thu Oct 09 17:00:15 2014 +0000
+++ b/usr.bin/config/mkmakefile.c       Thu Oct 09 17:22:55 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mkmakefile.c,v 1.18 2014/10/09 17:00:15 uebayasi Exp $ */
+/*     $NetBSD: mkmakefile.c,v 1.19 2014/10/09 17:22:55 uebayasi Exp $ */
 
 /*
  * Copyright (c) 1992, 1993
@@ -128,7 +128,7 @@
                        continue;
                }
                if (strcmp(line, "%OBJS\n") == 0)
-                       fn = usekobjs ? emitobjs : emitkobjs;
+                       fn = usekobjs ? emitkobjs : emitobjs;
                else if (strcmp(line, "%CFILES\n") == 0)
                        fn = emitcfiles;
                else if (strcmp(line, "%SFILES\n") == 0)



Home | Main Index | Thread Index | Old Index