summaryrefslogtreecommitdiffstats
path: root/tools/perf/config
diff options
context:
space:
mode:
authorJohn Spencer <maillist-linux@barfooze.de>2014-08-25 21:36:32 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2014-09-17 17:08:09 -0300
commitbf9e3e5763722c9668c6719a1de60ee58452b738 (patch)
treec1d88269ac8490b77168ea0a02ce160d6a9f267b /tools/perf/config
parent763122ade725592402190f5ff3b8d2edf42b87e8 (diff)
downloadop-kernel-dev-bf9e3e5763722c9668c6719a1de60ee58452b738.zip
op-kernel-dev-bf9e3e5763722c9668c6719a1de60ee58452b738.tar.gz
perf tools: Fix GNU-only grep usage in Makefile
This makes it work with non-GNU grep's as well. Signed-off-by: John Spencer <maillist-linux@barfooze.de> Acked-by: Namhyung Kim <namhyung@kernel.org> Link: http://thread.gmane.org/gmane.linux.kernel.perf.user/1686 Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/config')
-rw-r--r--tools/perf/config/utilities.mak2
1 files changed, 1 insertions, 1 deletions
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
#
OpenPOWER on IntegriCloud