Use 'LIBS+= ...' instead of 'LIBS= ...' in the generated makefile
so that the user can override libraries at build time. This is makes it easier to cross-compile crunch builds. Suggested by: luigi MFC after: 3 days
This commit is contained in:
parent
fbd26f7594
commit
d1a97625be
@ -915,7 +915,7 @@ void top_makefile_rules(FILE *outmk)
|
||||
{
|
||||
prog_t *p;
|
||||
|
||||
fprintf(outmk, "LIBS=");
|
||||
fprintf(outmk, "LIBS+=");
|
||||
output_strlst(outmk, libs);
|
||||
|
||||
if (makeobj) {
|
||||
|
Loading…
Reference in New Issue
Block a user