lkml.org 
[lkml]   [2014]   [May]   [13]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 09/34] perf kbuild: fix a link issue if BUILTIN_TRACE is disabled
    Date
    ---
    tools/perf/perf.c | 4 ++--
    1 file changed, 2 insertions(+), 2 deletions(-)

    diff --git a/tools/perf/perf.c b/tools/perf/perf.c
    index 74a1269..588221c 100644
    --- a/tools/perf/perf.c
    +++ b/tools/perf/perf.c
    @@ -95,7 +95,7 @@ static struct cmd_struct commands[] = {
    #ifdef CONFIG_BUILTIN_TEST
    { "test", cmd_test, 0 },
    #endif
    -#if defined HAVE_LIBAUDIT_SUPPORT && defined CONFIG_BUILTIN_TRACE
    +#ifdef CONFIG_BUILTIN_TRACE
    { "trace", cmd_trace, 0 },
    #endif
    #ifdef CONFIG_BUILTIN_INJECT
    @@ -524,7 +524,7 @@ int main(int argc, const char **argv)
    fprintf(stderr, "cannot handle %s internally", cmd);
    goto out;
    }
    -#ifdef HAVE_LIBAUDIT_SUPPORT
    +#ifdef CONFIG_BUILTIN_TRACE
    if (!prefixcmp(cmd, "trace")) {
    set_buildid_dir();
    setup_path();
    --
    1.9.2


    \
     
     \ /
      Last update: 2014-05-14 04:42    [W:4.717 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site