From ace917243e97478aae54b2c3560dc056445de21b Mon Sep 17 00:00:00 2001 From: des Date: Thu, 24 Apr 2003 00:52:58 +0000 Subject: Don't convert the kernel ident to uppercase when writing the Makefile. --- usr.sbin/config/mkmakefile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin/config/mkmakefile.c') 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) -- cgit v1.1