From fec099666c5d13ebc4fa6f7e47e9c5d9fc8a0d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edoardo=20Apr=C3=A0?= Date: Mon, 10 Apr 2023 04:39:52 -0700 Subject: [PATCH] freebsd make fix --- src/tools/GNUmakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tools/GNUmakefile b/src/tools/GNUmakefile index b26ad72465..e02e0ce4ec 100644 --- a/src/tools/GNUmakefile +++ b/src/tools/GNUmakefile @@ -678,7 +678,9 @@ ifeq ($(FC),$(findstring $(FC),scorep scorep-wrapper scorep-gfortran scorep-mpif endif ifneq ($(V),1) MAYBE_HOST += -q --enable-silent-rules - MAKE= make V=0 + ifneq ($(GOTFREEBSD),1) + MAKE= make V=0 + endif endif BUILDDIR = build INSTALLDIR = install