Skip to content

Commit 1e26b36

Browse files
committed
tarball: use make's --no-print-directory flag. fix make's (sometimes like in artix linux) default behavior of always printing entering and leaving directory messages. we only want them when we specify V=1 for verbose builds.
1 parent 886d114 commit 1e26b36

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crossplatform.mk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ $(info Using config.mk configuration file.)
33
include config.mk
44
endif
55

6+
ifndef VERBOSE
7+
MAKEFLAGS += --no-print-directory
8+
endif
9+
610
# HOST PLATFORM DETECTION
711
ifeq ($(OS),Windows_NT)
812
HOST_PLATFORM := win32

0 commit comments

Comments
 (0)