From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755484Ab1AaK3X (ORCPT ); Mon, 31 Jan 2011 05:29:23 -0500 Received: from cantor.suse.de ([195.135.220.2]:46147 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755415Ab1AaK3U (ORCPT ); Mon, 31 Jan 2011 05:29:20 -0500 Date: Mon, 31 Jan 2011 11:29:14 +0100 Message-ID: From: Takashi Iwai To: Amerigo Wang Cc: linux-kernel@vger.kernel.org, Jaroslav Kysela , Paul Mundt , John Kacur , Ralf Baechle , alsa-devel@alsa-project.org Subject: Re: [Patch] sound: silent echo'ed messages in Makefile In-Reply-To: <1296204727-19160-1-git-send-email-amwang@redhat.com> References: <1296204727-19160-1-git-send-email-amwang@redhat.com> User-Agent: Wanderlust/2.15.6 (Almost Unreal) SEMI/1.14.6 (Maruoka) FLIM/1.14.9 (=?UTF-8?B?R29qxY0=?=) APEL/10.7 Emacs/23.2 (x86_64-suse-linux-gnu) MULE/6.0 (HANACHIRUSATO) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org At Fri, 28 Jan 2011 16:52:00 +0800, Amerigo Wang wrote: > > Silent these echo's, please. > > Signed-off-by: WANG Cong Applied now. Thanks. Takashi > --- > diff --git a/sound/oss/Makefile b/sound/oss/Makefile > index 96f14dc..90ffb99 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;'; \ > ) > $@ >