From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754887Ab3JHITL (ORCPT ); Tue, 8 Oct 2013 04:19:11 -0400 Received: from mail-ea0-f170.google.com ([209.85.215.170]:54184 "EHLO mail-ea0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751733Ab3JHITI (ORCPT ); Tue, 8 Oct 2013 04:19:08 -0400 Date: Tue, 8 Oct 2013 10:19:05 +0200 From: Ingo Molnar To: Jiri Olsa Cc: linux-kernel@vger.kernel.org, Peter Zijlstra , Arnaldo Carvalho de Melo , Namhyung Kim , David Ahern Subject: Re: [PATCH 19/50] tools/perf/build: Split out feature check: 'libaudit' Message-ID: <20131008081905.GA7232@gmail.com> References: <1381147003-2574-1-git-send-email-mingo@kernel.org> <1381147003-2574-20-git-send-email-mingo@kernel.org> <20131007210048.GA2900@krava.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20131007210048.GA2900@krava.redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Jiri Olsa wrote: > On Mon, Oct 07, 2013 at 01:56:12PM +0200, Ingo Molnar wrote: > > Cc: Arnaldo Carvalho de Melo > > Cc: Peter Zijlstra > > Cc: Namhyung Kim > > Cc: David Ahern > > Cc: Jiri Olsa > > Link: http://lkml.kernel.org/n/tip-orhejqtjao3vf4wxwBUdzhaz@git.kernel.org > > Signed-off-by: Ingo Molnar > > --- > > tools/perf/config/Makefile | 6 +++--- > > tools/perf/config/feature-checks/Makefile | 4 ++++ > > tools/perf/config/feature-checks/test-libaudit.c | 7 +++++++ > > 3 files changed, 14 insertions(+), 3 deletions(-) > > > > diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile > > index 890f264..e82e0b8 100644 > > --- a/tools/perf/config/Makefile > > +++ b/tools/perf/config/Makefile > > @@ -114,6 +114,7 @@ FEATURE_TESTS = \ > > libelf-mmap \ > > libelf-getphdrnum \ > > libunwind \ > > + libaudit \ > > libnuma > > > > $(foreach test,$(FEATURE_TESTS),$(call feature_check,$(test),$(test))) > > @@ -240,7 +241,7 @@ ifneq ($(ARCH),x86) > > endif > > > > ifndef NO_LIBUNWIND > > - ifeq ($(feature-libunwind), 1) > > + ifneq ($(feature-libunwind), 1) > > msg := $(warning No libunwind found, disabling post unwind support. Please install libunwind-dev[el] >= 0.99); > > NO_LIBUNWIND := 1 > > endif > > nit, this change belongs to previous patch Thanks, fixed. Ingo