From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751558AbdH0H4c (ORCPT ); Sun, 27 Aug 2017 03:56:32 -0400 Received: from mail-pf0-f173.google.com ([209.85.192.173]:33891 "EHLO mail-pf0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751243AbdH0Hz2 (ORCPT ); Sun, 27 Aug 2017 03:55:28 -0400 X-Google-Smtp-Source: ADKCNb5eufxv0r4lOKSK+Y/QuzYK/r5kO9Z8gwtwLydSVnd8mqplbcBt1bIvC7+7P+LoMHjNH+14Qg== From: David Carrillo-Cisneros To: linux-kernel@vger.kernel.org Cc: Arnaldo Carvalho de Melo , Alexander Shishkin , Jiri Olsa , Stephane Eranian , Paul Turner , David Carrillo-Cisneros Subject: [PATCH 2/6] perf tools: Allow external definition of flex and bison binary names Date: Sun, 27 Aug 2017 00:54:38 -0700 Message-Id: <20170827075442.108534-3-davidcc@google.com> X-Mailer: git-send-email 2.14.1.342.g6490525c54-goog In-Reply-To: <20170827075442.108534-1-davidcc@google.com> References: <20170827075442.108534-1-davidcc@google.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Allow user to define flex and bison binary names by passing FLEX and BISON variables. Signed-off-by: David Carrillo-Cisneros --- 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 a700a079a218..58924eb0f40b 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 -- 2.14.1.342.g6490525c54-goog