From f906c47819fa03a321496e43d3cd3eb123adfc7c Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Fri, 23 Jul 2010 22:53:15 +0000 Subject: [PATCH] The addition of asflags for specific objects was duplicated --- src/makefile.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/makefile.c b/src/makefile.c index e4260d5..29020a5 100644 --- a/src/makefile.c +++ b/src/makefile.c @@ -1257,14 +1257,11 @@ static int _target_source(Configure * configure, FILE * fp, fprintf(fp, ": %s.%s", source, sObjectType[ot]); source[len] = '.'; /* FIXME ugly */ _source_depends(configure->config, fp, source); - p = config_get(configure->config, source, "asflags"); source[len] = '\0'; fputs("\n\t", fp); if(tt == TT_LIBTOOL) fputs("$(LIBTOOL) --mode=compile ", fp); fprintf(fp, "%s%s%s", "$(AS) $(", target, "_ASFLAGS)"); - if(p != NULL) - fprintf(fp, " %s", p); fprintf(fp, "%s%s%s%s%s%s", " -o ", source, ".o ", source, ".", sObjectType[ot]); fputc('\n', fp);