diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-28 22:30:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-28 22:30:32 +0000 |
commit | e5760ee3f30b36e1ce866c68db759a40a2ecd8b0 (patch) | |
tree | 852a93e580b18bf10d3ff2d7e7f3898c16933823 /libc/Makefile | |
parent | b3bccca4b73e2759e5a30ad3d1a21b96d017eadb (diff) |
further refine output so the silent mode of make is truly silent
Diffstat (limited to 'libc/Makefile')
-rw-r--r-- | libc/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
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 ; \ |