[<prev] [next>] [day] [month] [year] [list]
Message-ID: <87sikjbvef.fsf@sejong.aot.lge.com>
Date: Tue, 26 Aug 2014 15:46:32 +0900
From: Namhyung Kim <namhyung@...nel.org>
To: John Spencer <maillist-linux@...fooze.de>
Cc: linux-perf-users@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] perf Makefile: fix GNU-only grep usage
Hi John,
You'd better to CC the lkml (linux-kernel@...r.kernel.org) for the perf
patches to get reviewed by other developers. I'm copying to the list
this time.
On Mon, 25 Aug 2014 21:36:32 +0200, John Spencer wrote:
> From efa79d5b7bc750369332a3a34442573af7b1b35c Mon Sep 17 00:00:00 2001
> From: John Spencer <maillist-linux@...fooze.de>
> Date: Mon, 25 Aug 2014 21:24:30 +0200
> Subject: [PATCH 1/2] perf Makefile: fix GNU-only grep usage
>
> this makes it work with non-GNU grep's as well.
>
> Signed-off-by: John Spencer <maillist-linux@...fooze.de>
Acked-by: Namhyung Kim <namhyung@...nel.org>
Thanks,
Namhyung
>
> ---
> tools/perf/config/utilities.mak | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/perf/config/utilities.mak b/tools/perf/config/utilities.mak
> index 4d985e0..7076a62 100644
> --- a/tools/perf/config/utilities.mak
> +++ b/tools/perf/config/utilities.mak
> @@ -132,7 +132,7 @@ endef
> #
> # Usage: bool-value = $(call is-absolute,path)
> #
> -is-absolute = $(shell echo $(shell-sq) | grep ^/ -q && echo y)
> +is-absolute = $(shell echo $(shell-sq) | grep -q ^/ && echo y)
>
> # lookup
> #
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists