aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-27 01:09:24 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-27 01:09:24 +0000
commit4d00896d05294a11f74fde6e7107f6cf1be4d5b7 (patch)
treef3521bd0d7b3e28d001cc6f5d2d14b943cff0020 /editors
parent6fafa5aa9f3a8efd4dd88f152ea46d4f1f69476b (diff)
downloadbusybox-4d00896d05294a11f74fde6e7107f6cf1be4d5b7.tar.gz
use toplevel ARFLAGS and update default ARFLAGS to be quiet
Diffstat (limited to 'editors')
-rw-r--r--editors/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/Makefile.in b/editors/Makefile.in
index 571e05568..b43cc463b 100644
--- a/editors/Makefile.in
+++ b/editors/Makefile.in
@@ -41,7 +41,7 @@ ifeq ($(needlibm-y),y)
endif
$(EDITOR_DIR)$(EDITOR_AR): $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y))
- $(AR) -ro $@ $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y))
+ $(AR) $(ARFLAGS) $@ $(patsubst %,$(EDITOR_DIR)%, $(EDITOR-y))
$(EDITOR_DIR)%.o: $(srcdir)/%.c
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<