Skip to content

Commit

Permalink
tarball: use make's --no-print-directory flag. fix make's (sometimes …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
redj committed Aug 16, 2020
1 parent 886d114 commit 1e26b36
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crossplatform.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ $(info Using config.mk configuration file.)
include config.mk
endif

ifndef VERBOSE
MAKEFLAGS += --no-print-directory
endif

# HOST PLATFORM DETECTION
ifeq ($(OS),Windows_NT)
HOST_PLATFORM := win32
Expand Down

0 comments on commit 1e26b36

Please sign in to comment.