Changed assembly files extension to ".S" (works with GCC but should invoke $(AS) directly)

This commit is contained in:
Pierre Pronchery 2004-09-27 16:00:12 +00:00
parent 61d90aa7b9
commit ed242a45ce

View File

@ -316,11 +316,11 @@ static void _obj_print(FILE * fp, char * obj)
fprintf(fp, "%s", obj);
obj[len+1] = 'c';
}
else if(strcmp(&obj[len+1], "e") == 0)
else if(strcmp(&obj[len+1], "S") == 0)
{
obj[len+1] = 'o';
fprintf(fp, "%s", obj);
obj[len+1] = 'e';
obj[len+1] = 'S';
}
else
fprintf(stderr, "%s%s%s", "configure: ", obj,