diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-28 22:14:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-28 22:14:35 +0000 |
commit | c99e2c5f4caa31b25442ca1e82076b7ba327652d (patch) | |
tree | 5858479da70b23eab882658b26bbb47dc11056e4 /Rules.mak | |
parent | 088ee4134b7e912ec79d927c6cf157b2bccedf98 (diff) | |
download | busybox-w32-c99e2c5f4caa31b25442ca1e82076b7ba327652d.tar.gz busybox-w32-c99e2c5f4caa31b25442ca1e82076b7ba327652d.tar.bz2 busybox-w32-c99e2c5f4caa31b25442ca1e82076b7ba327652d.zip |
dont output anything when running in silent mode
Diffstat (limited to '')
-rw-r--r-- | Rules.mak | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -109,6 +109,15 @@ endif | |||
109 | check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \ | 109 | check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \ |
110 | then echo "$(1)"; else echo "$(2)"; fi) | 110 | then echo "$(1)"; else echo "$(2)"; fi) |
111 | 111 | ||
112 | # Setup some shortcuts so that silent mode is silent like it should be | ||
113 | ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS)) | ||
114 | export MAKE_IS_SILENT=n | ||
115 | SECHO=@echo | ||
116 | else | ||
117 | export MAKE_IS_SILENT=y | ||
118 | SECHO=-@false | ||
119 | endif | ||
120 | |||
112 | #-------------------------------------------------------- | 121 | #-------------------------------------------------------- |
113 | # Arch specific compiler optimization stuff should go here. | 122 | # Arch specific compiler optimization stuff should go here. |
114 | # Unless you want to override the defaults, do not set anything | 123 | # Unless you want to override the defaults, do not set anything |