diff options
author | Michael Brown <mcb30@ipxe.org> | 2023-07-04 14:55:53 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2023-07-04 15:03:31 +0100 |
commit | daa9e54ab8207ea9bae80db16d664d019d590fb2 (patch) | |
tree | 36d024148a0de524c7ceb372b9e233fc054252b9 | |
parent | 3ef4f7e2ef4a22ea1e2eccc72957d7bf3fe2f945 (diff) | |
download | ipxe-daa9e54ab8207ea9bae80db16d664d019d590fb2.tar.gz |
[build] Silence the "creating blib.a" message
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r-- | src/Makefile.housekeeping | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index 4a90b3ca4..3b8ee2587 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -1178,7 +1178,7 @@ BLIB = $(BIN)/blib.a $(BLIB) : $(BLIB_OBJS) $(BLIB_LIST) $(MAKEDEPS) $(Q)$(RM) $(BLIB) $(QM)$(ECHO) " [AR] $@" - $(Q)$(AR) rD $@ $(sort $(BLIB_OBJS)) + $(Q)$(AR) rcD $@ $(sort $(BLIB_OBJS)) $(Q)$(OBJCOPY) --enable-deterministic-archives \ --prefix-symbols=$(SYMBOL_PREFIX) $@ $(Q)$(RANLIB) -D $@ |