Don't convert the kernel ident to uppercase when writing the Makefile.

This commit is contained in:
des 2003-04-24 00:52:58 +00:00
parent 0b9cb6ead8
commit f70e2b7f37

View File

@ -138,7 +138,7 @@ makefile(void)
ofp = fopen(path("Makefile.new"), "w"); ofp = fopen(path("Makefile.new"), "w");
if (ofp == 0) if (ofp == 0)
err(1, "%s", path("Makefile.new")); 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) SLIST_FOREACH(op, &mkopt, op_next)
fprintf(ofp, "%s=%s\n", op->op_name, op->op_value); fprintf(ofp, "%s=%s\n", op->op_name, op->op_value);
if (debugging) if (debugging)