From a5a9e43f5ac81ceab16c06494fed52a8fcda7571 Mon Sep 17 00:00:00 2001 From: Erik Helin Date: Mon, 8 Feb 2016 08:05:12 +0100 Subject: [PATCH] 8149116: Make test/Makefile more silent Reviewed-by: mikael, erikj --- test/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 27bb5c3ba19..e31dbedea87 100644 --- a/test/Makefile +++ b/test/Makefile @@ -40,8 +40,7 @@ HOTSPOT_DIR=$(TOPDIR)/hotspot define SUBDIR_TEST # subdirectory target if [ -d $1 ] ; then \ if [ -r $1/test/Makefile ] ; then \ - echo "$(MAKE) -k -C $1/test $2" ; \ - $(MAKE) -k -C $1/test $2 ; \ + $(MAKE) --no-print-directory -k -C $1/test $2 ; \ else \ echo "ERROR: File does not exist: $1/test/Makefile"; \ exit 1; \