From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 38E628F5D; Tue, 10 Oct 2023 13:01:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Hd4wiGMt" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 753A3C433C7; Tue, 10 Oct 2023 13:01:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1696942886; bh=ARY8nAiRbk6GqCoWYZNXSfZ8OEzDFquMKTGnWrDzFpU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Hd4wiGMtctAkbQliqvFRmP6uqb2oYAEc3y6wyxlA/vi+8IzcO7muhw9pSDd/RnRn5 f+wi3vR8fOVYTDbzmHphJZ7mDx7CQRfsZjrOOorzsCANiqfYkzU5E2jBXvX6Ua4uWF VSmHlnaEIiMoKe4TqfP4f/2TN20q0s/CIbGAs2i05FzvBMaPQ0MX+GaUMMYbVtLoT9 5ZLMm7eW/JYkO3VYaohpuTCUezzF6h3+UP0zcAPufrm4FDxEuw3tWynmQPY6ipT2oq M2UMkZ0WGO/vYr+LG3cxdRS3dW+VmWfxGTWskFJrPPcKEIlG6TZ7pI3N7IbrGDfMyS +3TUvsvbrAfDQ== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id A633340508; Tue, 10 Oct 2023 10:01:23 -0300 (-03) Date: Tue, 10 Oct 2023 10:01:23 -0300 From: Arnaldo Carvalho de Melo To: Jiri Olsa Cc: Alexei Starovoitov , Daniel Borkmann , Andrii Nakryiko , Quentin Monnet , linux-perf-users@vger.kernel.org, bpf@vger.kernel.org, Namhyung Kim , Alexander Shishkin , Martin KaFai Lau , Song Liu , Yonghong Song , John Fastabend , Ian Rogers , KP Singh , Stanislav Fomichev , Hao Luo , Ingo Molnar , Peter Zijlstra Subject: Re: [PATCHv2 0/2] tools/build: Fix -s detection code for new make Message-ID: References: <20231008212251.236023-1-jolsa@kernel.org> Precedence: bulk X-Mailing-List: linux-perf-users@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231008212251.236023-1-jolsa@kernel.org> X-Url: http://acmel.wordpress.com Em Sun, Oct 08, 2023 at 11:22:49PM +0200, Jiri Olsa escreveu: > hi, > this fixes the detection of silent flag for newer make. > > It'd be better to re-use the code, but I don't see simple > way without more refactoring. I put that on my todo list. > > v2 changes: > - adding the change for tools/scripts/Makefile.include as well Tested-by: Arnaldo Carvalho de Melo - Arnaldo > thanks, > jirka > > > --- > Jiri Olsa (2): > tools/build: Fix -s detection code in tools/build/Makefile.build > tools/build: Fix -s detection code in tools/scripts/Makefile.include > > tools/build/Makefile.build | 10 +++++++++- > tools/scripts/Makefile.include | 10 +++++++++- > 2 files changed, 18 insertions(+), 2 deletions(-) -- - Arnaldo