From e5760ee3f30b36e1ce866c68db759a40a2ecd8b0 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 28 Jul 2005 22:30:32 +0000 Subject: further refine output so the silent mode of make is truly silent --- libc/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libc/Makefile') diff --git a/libc/Makefile b/libc/Makefile index ba3cd503a..dcd51bb1b 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -62,7 +62,9 @@ $(LIBNAME) shared_$(LIBNAME) ar-target: subdirs obj.string.generic obj.string.$(TARGET_ARCH) obj.string \ obj.sysdeps.common obj.sysdeps.$(TARGET_ARCH) ; do \ if [ -e $$objfile ] ; then \ - echo $(AR) $(ARFLAGS) $(LIBNAME) $$objfile ; \ + if [ "$(MAKE_IS_SILENT)" = "n" ] ; then \ + echo $(AR) $(ARFLAGS) $(LIBNAME) $$objfile ; \ + fi ; \ objs=`cat $$objfile` ; \ fi ; \ $(AR) $(ARFLAGS) $(LIBNAME) $$objs || exit 1 ; \ -- cgit v1.2.3