Module Name: src Committed By: uebayasi Date: Thu Oct 9 17:22:55 UTC 2014
Modified Files: src/usr.bin/config: mkmakefile.c Log Message: Correct inverted logic. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/usr.bin/config/mkmakefile.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.bin/config/mkmakefile.c diff -u src/usr.bin/config/mkmakefile.c:1.18 src/usr.bin/config/mkmakefile.c:1.19 --- src/usr.bin/config/mkmakefile.c:1.18 Thu Oct 9 17:00:15 2014 +++ src/usr.bin/config/mkmakefile.c Thu Oct 9 17:22:55 2014 @@ -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 @@ mkmakefile(void) 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)