Skip to content

Commit

Permalink
Only suppress stderr in quiet build mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gerdr committed Aug 23, 2013
1 parent 907d08d commit 7fb4143
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 1 addition & 2 deletions build/Makefile.in
Expand Up @@ -5,14 +5,13 @@ MAKE = @make@ @mkflags@
RM = @rm@
CAT = @cat@

NOERR = 2> @nul@

TRACING = 0
NOISY = 0

MSG = @:
CMD =
CMDOUT =
NOERR =

@mknoisy@

Expand Down
3 changes: 3 additions & 0 deletions build/setup.pm
Expand Up @@ -127,6 +127,7 @@ ifneq ($(NOISY), 1)
MSG = @echo
CMD = @
CMDOUT = > @nul@
NOERR = 2> @nul@
endif
TERM

Expand All @@ -148,6 +149,7 @@ our %TOOLCHAINS = (
MSG = @echo
CMD = @
CMDOUT = > @nul@
NOERR = 2> @nul@
.endif
TERM
},
Expand Down Expand Up @@ -175,6 +177,7 @@ TERM
MSG = @echo
CMD = @
CMDOUT = > @nul@
NOERR = 2> @nul@
!ENDIF
TERM

Expand Down

0 comments on commit 7fb4143

Please sign in to comment.