From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752057AbdH2VZW (ORCPT ); Tue, 29 Aug 2017 17:25:22 -0400 Received: from terminus.zytor.com ([65.50.211.136]:55347 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751492AbdH2VZU (ORCPT ); Tue, 29 Aug 2017 17:25:20 -0400 Date: Tue, 29 Aug 2017 14:23:10 -0700 From: tip-bot for David Carrillo-Cisneros Message-ID: Cc: alexander.shishkin@linux.intel.com, hpa@zytor.com, acme@redhat.com, davidcc@google.com, tglx@linutronix.de, eranian@google.com, jolsa@kernel.org, linux-kernel@vger.kernel.org, mingo@kernel.org, pjt@google.com Reply-To: eranian@google.com, jolsa@kernel.org, linux-kernel@vger.kernel.org, pjt@google.com, mingo@kernel.org, alexander.shishkin@linux.intel.com, davidcc@google.com, tglx@linutronix.de, hpa@zytor.com, acme@redhat.com In-Reply-To: <20170827075442.108534-3-davidcc@google.com> References: <20170827075442.108534-3-davidcc@google.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tools: Allow external definition of flex and bison binary names Git-Commit-ID: 39a59f1e3ea541035637432db39158a461f29146 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 39a59f1e3ea541035637432db39158a461f29146 Gitweb: http://git.kernel.org/tip/39a59f1e3ea541035637432db39158a461f29146 Author: David Carrillo-Cisneros AuthorDate: Sun, 27 Aug 2017 00:54:38 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 28 Aug 2017 16:44:45 -0300 perf tools: Allow external definition of flex and bison binary names Allow user to define flex and bison binary names by passing FLEX and BISON variables. Signed-off-by: David Carrillo-Cisneros Acked-by: Jiri Olsa Cc: Alexander Shishkin Cc: Paul Turner Cc: Stephane Eranian Link: http://lkml.kernel.org/r/20170827075442.108534-3-davidcc@google.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/Makefile.perf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index a700a07..58924eb 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf @@ -164,8 +164,8 @@ LN = ln -f MKDIR = mkdir FIND = find INSTALL = install -FLEX = flex -BISON = bison +FLEX ?= flex +BISON ?= bison STRIP = strip AWK = awk