diff options
author | des <des@FreeBSD.org> | 2003-04-24 00:52:58 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-04-24 00:52:58 +0000 |
commit | ace917243e97478aae54b2c3560dc056445de21b (patch) | |
tree | ae868738922106cd2baa4b2e6bc2792c370f7cd8 /usr.sbin/config | |
parent | 6649125e4d15fa4933b31d88d29c13c9d59ca2ca (diff) | |
download | FreeBSD-src-ace917243e97478aae54b2c3560dc056445de21b.zip FreeBSD-src-ace917243e97478aae54b2c3560dc056445de21b.tar.gz |
Don't convert the kernel ident to uppercase when writing the Makefile.
Diffstat (limited to 'usr.sbin/config')
-rw-r--r-- | usr.sbin/config/mkmakefile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c index 633bf8b..a3bfbdb 100644 --- a/usr.sbin/config/mkmakefile.c +++ b/usr.sbin/config/mkmakefile.c @@ -138,7 +138,7 @@ makefile(void) ofp = fopen(path("Makefile.new"), "w"); if (ofp == 0) err(1, "%s", path("Makefile.new")); - fprintf(ofp, "KERN_IDENT=%s\n", raisestr(ident)); + fprintf(ofp, "KERN_IDENT=%s\n", ident); SLIST_FOREACH(op, &mkopt, op_next) fprintf(ofp, "%s=%s\n", op->op_name, op->op_value); if (debugging) |