[PATCH] perl: fix build failure ("linux/module.h" not found)

From: Sergei Trofimovich
Date: Sat Mar 31 2012 - 13:53:54 EST


From: Sergei Trofimovich <slyfox@xxxxxxxxxx>

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@xxxxxxxxx>
CC: Paul Mackerras <paulus@xxxxxxxxx>
CC: Ingo Molnar <mingo@xxxxxxxxxx>
CC: Arnaldo Carvalho de Melo <acme@xxxxxxxxxxxxxxxxxx>
Signed-off-by: Sergei Trofimovich <slyfox@xxxxxxxxxx>
---
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

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/