Reverted the unintentional additional carriage returns added recently
This commit is contained in:
parent
7a2ee196e1
commit
cb787f68de
@ -481,11 +481,13 @@ static void _targets_ldflags(Configure * configure, FILE * fp)
|
||||
{
|
||||
fputs("LDFLAGSF=", fp);
|
||||
_binary_ldflags(configure, fp, p);
|
||||
fputc('\n', fp);
|
||||
}
|
||||
if((p = config_get(configure->config, "", "ldflags")) != NULL)
|
||||
{
|
||||
fputs("LDFLAGS\t=", fp);
|
||||
_binary_ldflags(configure, fp, p);
|
||||
fputc('\n', fp);
|
||||
}
|
||||
}
|
||||
|
||||
@ -539,7 +541,7 @@ static void _binary_ldflags(Configure * configure, FILE * fp,
|
||||
continue;
|
||||
memmove(q, q + strlen(buf), strlen(q) - strlen(buf) + 1);
|
||||
}
|
||||
fprintf(fp, " %s\n", p);
|
||||
fprintf(fp, " %s", p);
|
||||
string_delete(p);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user