lkml.org 
[lkml]   [2012]   [Mar]   [31]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH] perl: fix build failure ("linux/module.h" not found)
    Date
    From: Sergei Trofimovich <slyfox@gentoo.org>

    CC util/rbtree.o
    ../../lib/rbtree.c:24:26: fatal error: linux/export.h: No such file or directory
    compilation terminated.
    make: *** [util/rbtree.o] Error 1

    Follow linux/module.h -> linux/export.h rename.

    CC: Peter Zijlstra <a.p.zijlstra@chello.nl>
    CC: Paul Mackerras <paulus@samba.org>
    CC: Ingo Molnar <mingo@redhat.com>
    CC: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
    Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
    ---
    tools/perf/Makefile | 2 +-
    tools/perf/util/include/linux/export.h | 6 ++++++
    tools/perf/util/include/linux/module.h | 6 ------
    3 files changed, 7 insertions(+), 7 deletions(-)
    create mode 100644 tools/perf/util/include/linux/export.h
    delete mode 100644 tools/perf/util/include/linux/module.h

    diff --git a/tools/perf/Makefile b/tools/perf/Makefile
    index 74fd7f8..3c32126 100644
    --- a/tools/perf/Makefile
    +++ b/tools/perf/Makefile
    @@ -249,7 +249,7 @@ LIB_H += util/include/linux/const.h
    LIB_H += util/include/linux/ctype.h
    LIB_H += util/include/linux/kernel.h
    LIB_H += util/include/linux/list.h
    -LIB_H += util/include/linux/module.h
    +LIB_H += util/include/linux/export.h
    LIB_H += util/include/linux/poison.h
    LIB_H += util/include/linux/prefetch.h
    LIB_H += util/include/linux/rbtree.h
    diff --git a/tools/perf/util/include/linux/export.h b/tools/perf/util/include/linux/export.h
    new file mode 100644
    index 0000000..b43e2dc
    --- /dev/null
    +++ b/tools/perf/util/include/linux/export.h
    @@ -0,0 +1,6 @@
    +#ifndef PERF_LINUX_MODULE_H
    +#define PERF_LINUX_MODULE_H
    +
    +#define EXPORT_SYMBOL(name)
    +
    +#endif
    diff --git a/tools/perf/util/include/linux/module.h b/tools/perf/util/include/linux/module.h
    deleted file mode 100644
    index b43e2dc..0000000
    --- a/tools/perf/util/include/linux/module.h
    +++ /dev/null
    @@ -1,6 +0,0 @@
    -#ifndef PERF_LINUX_MODULE_H
    -#define PERF_LINUX_MODULE_H
    -
    -#define EXPORT_SYMBOL(name)
    -
    -#endif
    --
    1.7.8.5


    \
     
     \ /
      Last update: 2012-03-31 19:57    [W:3.850 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site