diff options
author | Amerigo Wang <amwang@redhat.com> | 2011-01-28 16:52:00 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-01-31 11:28:53 +0100 |
commit | fdbc5d1b32e195b7775e103abd6263370f11af11 (patch) | |
tree | 760cdb1c3233662909282840c1f20cf9ab20c1bb /sound | |
parent | dcc3c4c016481de3fdb99c1f6ecb04d4229513d4 (diff) | |
download | linux-3.10-fdbc5d1b32e195b7775e103abd6263370f11af11.tar.gz linux-3.10-fdbc5d1b32e195b7775e103abd6263370f11af11.tar.bz2 linux-3.10-fdbc5d1b32e195b7775e103abd6263370f11af11.zip |
sound: silent echo'ed messages in Makefile
Silent these echo's, please.
Signed-off-by: WANG Cong <amwang@redhat.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/oss/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/oss/Makefile b/sound/oss/Makefile index 96f14dcd0cd..90ffb99c6b1 100644 --- a/sound/oss/Makefile +++ b/sound/oss/Makefile @@ -87,7 +87,7 @@ ifeq ($(CONFIG_PSS_HAVE_BOOT),y) $(obj)/bin2hex pss_synth < $< > $@ else $(obj)/pss_boot.h: - ( \ + $(Q)( \ echo 'static unsigned char * pss_synth = NULL;'; \ echo 'static int pss_synthLen = 0;'; \ ) > $@ @@ -102,7 +102,7 @@ ifeq ($(CONFIG_TRIX_HAVE_BOOT),y) $(obj)/hex2hex -i trix_boot < $< > $@ else $(obj)/trix_boot.h: - ( \ + $(Q)( \ echo 'static unsigned char * trix_boot = NULL;'; \ echo 'static int trix_boot_len = 0;'; \ ) > $@ |