libgloss: change 'q' flag to 'r' in ar call

The GNU ar has "q" aliased to "r", and we generally want this behavior anyways
(replacing rather than always appending), so change our AR_FLAGS definition.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Michael Frysinger 2012-03-13 01:47:40 +00:00
parent 3617fc8859
commit f408b153cc
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2012-03-12 Mike Frysinger <vapier@gentoo.org>
* config/default.mh (AR_FLAGS): Set to rc.
2012-03-09 Jeff Johnston <jjohnstn@redhat.com>
* epiphany/access.c: Add modification rights to clause as

View File

@ -6,7 +6,7 @@ INCLUDES = -I. -I$(srcdir)/..
# options are passed; they're passed in $(CFLAGS).
CFLAGS_FOR_TARGET = -O2 -g ${MULTILIB} ${INCLUDES} ${NEWLIB_CFLAGS}
LDFLAGS_FOR_TARGET = ${MULTILIB} ${NEWLIB_LDFLAGS}
AR_FLAGS = qc
AR_FLAGS = rc
.c.o:
$(CC) $(CFLAGS_FOR_TARGET) -O2 $(INCLUDES) -c $(CFLAGS) $<