1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Unstaticize config. It was being optimized away.

MFC after:	3 days
This commit is contained in:
Dag-Erling Smørgrav 2005-03-27 13:44:00 +00:00
parent 72aa911a29
commit 8acd37ef20
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144179

View File

@ -331,7 +331,7 @@ configfile(void)
err(2, "%s", p);
fprintf(fo, "#include \"opt_config.h\"\n");
fprintf(fo, "#ifdef INCLUDE_CONFIG_FILE \n");
fprintf(fo, "static const char config[] = \"\\\n");
fprintf(fo, "const char config[] = \"\\\n");
fprintf(fo, "START CONFIG FILE %s\\n\\\n___", PREFIX);
while (EOF != (i=getc(fi))) {
if (i == '\n') {