diff options
author | Ramkumar Ramachandra <artagnon@gmail.com> | 2013-07-04 18:11:25 +0530 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-10-09 11:11:40 -0300 |
commit | 1ba6e01782fd2a94481e18b91b363636f8171565 (patch) | |
tree | 58f1cb4455917bea199219b1c213345f645073fa /tools/perf | |
parent | 50c95cbd70808aa2e5ba8d79e503456f1da37aeb (diff) |
perf completion: Don't dictate perf install location
The statement
have perf
limits the locations in which to look for the perf program. Moreover,
it depends on the bash-completion package to be installed. Replace it
with a call to `type perf`.
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Link: http://lkml.kernel.org/r/1372941691-14684-2-git-send-email-artagnon@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r-- | tools/perf/bash_completion | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/bash_completion b/tools/perf/bash_completion index 56e6a12aab59..50540cfe3d18 100644 --- a/tools/perf/bash_completion +++ b/tools/perf/bash_completion @@ -19,7 +19,7 @@ __ltrim_colon_completions() fi } -have perf && +type perf &>/dev/null && _perf() { local cur prev cmd |