From nobody Fri Jan 2 00:09:25 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CECB3CDB474 for ; Tue, 17 Oct 2023 18:15:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1343998AbjJQSPC (ORCPT ); Tue, 17 Oct 2023 14:15:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47646 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232208AbjJQSPA (ORCPT ); Tue, 17 Oct 2023 14:15:00 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 45B9190 for ; Tue, 17 Oct 2023 11:14:59 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AE0E9C433C7; Tue, 17 Oct 2023 18:14:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697566498; bh=CU3Hbht+xgnbWCMH9iiHjNgHCRgTzr4cVBHVQPdBK/I=; h=Date:From:To:Cc:Subject:From; b=oFAKJaIGSlPoSdMW7uDqldTkrShTBUR+46joxFrjetc5x3/xz6JGs6fDABA7+RgkQ DwEGvi4ux7yfJDP3w0Qoa/13IMCwv8D829ZQ+hhlhZPF54pRgB3NsnZvSTfABGWP19 nWDiy2vhsQlkMsuIMhFTHqn1IAo+FvHFdOoU677zsl+6fYaD9m+96nMLtaUsCxig9G nXuBo8rXGuzpZ0mxZfieRwQ44rrGMSyT4g/LaceSEsSc0PCGzF5xEnHfzhMP/nAjJg 8IEAUBK0MPRtMromZzUXP0G7xd1Lun1E2gz/+hwWJlQ7fQExerJaKh3I2o6FrrAWsP +960i+WEsNvog== Received: by quaco.ghostprotocols.net (Postfix, from userid 1000) id 2A92F40016; Tue, 17 Oct 2023 15:14:56 -0300 (-03) Date: Tue, 17 Oct 2023 15:14:56 -0300 From: Arnaldo Carvalho de Melo To: Namhyung Kim Cc: Adrian Hunter , Ian Rogers , Jiri Olsa , Linux Kernel Mailing List Subject: [PATCH] perf build: Remove stray '\' before that is warned about since grep 3.8 Message-ID: MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" To address this grep 3.8 warning: grep: warning: stray \ before # Cc: Adrian Hunter Cc: Ian Rogers Cc: Jiri Olsa Cc: Namhyung Kim Signed-off-by: Arnaldo Carvalho de Melo Acked-by: Namhyung Kim --- tools/perf/Makefile.perf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 456872ac410df4c0..25d5ccaec22a44fe 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -361,7 +361,7 @@ python-clean :=3D $(call QUIET_CLEAN, python) $(RM) -r = $(PYTHON_EXTBUILD) $(OUTPUT ifeq ($(CONFIG_LIBTRACEEVENT),y) PYTHON_EXT_SRCS :=3D $(shell grep -v ^\# util/python-ext-sources) else - PYTHON_EXT_SRCS :=3D $(shell grep -v '^\#\|util/trace-event.c' util/pyth= on-ext-sources) + PYTHON_EXT_SRCS :=3D $(shell grep -v '^#\|util/trace-event.c' util/pytho= n-ext-sources) endif =20 PYTHON_EXT_DEPS :=3D util/python-ext-sources util/setup.py $(LIBAPI) --=20 2.41.0